Quote:
Originally Posted by SurgE
If my font is too big, can i make the font a symbolic link and link it to a font in /Data?
|
Yes, you can, but you have to be very careful, as the /Data filesystem is normally accessible from your PC.
If you want to try something like this, you can fix up the tinyhttp.sh to check if there are some files in certain known location, and then mount them over top of your fonts. This way you can delete those files from the PC side, reset, and you will get the original fonts.
Something like this:
Code:
if [ -f /xxx/yyy ]
then
mount --bind /xxx/yyy /whereever_my_font_is
fi