12345678910111213141516171819202122 |
- diff --git a/UpdateRootfs.sh.in b/UpdateRootfs.sh.in
- index 97d46256b2..81448e77db 100644
- --- a/UpdateRootfs.sh.in
- +++ b/UpdateRootfs.sh.in
- @@ -153,11 +153,15 @@ if [ "$DONE" == "0" ]; then
- echo "Unknown Display Resolution"
- fi
-
- -
- -
- +#=== erase opentype fonts
- +#=== fonttype library uses huge amount of tim for creating cache
- +#=== so remove CJK Fonts
- +rm -rf /usr/share/fonts/opentype
- +sync
-
- #=================
- echo "Update Done, pls. reboot System"
- umount /mnt
- echo "."
- exit 0
- +
|