diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-08-31 13:31:00 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-08-31 13:32:24 -0400 |
commit | 56b49b3074f4ad9b6774f7be81b35772733b15a0 (patch) | |
tree | ed50ca13d19f8ebd5a32679b05b025fc4dbf9ff2 /tools | |
parent | 790a5bb0ca464c7ed1e0f1b058bb1ac30a8a055c (diff) | |
download | rockbox-56b49b3074f4ad9b6774f7be81b35772733b15a0.tar.gz rockbox-56b49b3074f4ad9b6774f7be81b35772733b15a0.tar.bz2 rockbox-56b49b3074f4ad9b6774f7be81b35772733b15a0.zip |
fonts: Use '08-Rockfont' as FONT_SYSFIXED on targets with 128x64 screens
..It's already the default UI font on those targets
Change-Id: If8cb44da650d19882e4bd4b641af2f4fa59c1cd1
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/configure | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index 79875aca14..7c9e3773c6 100755 --- a/tools/configure +++ b/tools/configure @@ -28,6 +28,7 @@ libdir= sharedir= thread_support="ASSEMBLER_THREADS" +sysfont="08-Schumacher-Clean" app_lcd_width= app_lcd_height= app_lcd_orientation= @@ -1737,6 +1738,7 @@ fi t_cpu="arm" t_manufacturer="pnx0101" t_model="iriver-ifp7xx" + sysfont="08-Rockfont" ;; 14|iriverh10) @@ -2244,6 +2246,7 @@ fi t_cpu="arm" t_manufacturer="tcc77x" t_model="logikdax" + sysfont="08-Rockfont" ;; 89|creativezenxfistyle) @@ -2542,6 +2545,7 @@ fi t_cpu="arm" t_manufacturer="tcc77x" t_model="m200" + sysfont="08-Rockfont" ;; 54|sansac100) @@ -2565,6 +2569,7 @@ fi t_cpu="arm" t_manufacturer="tcc77x" t_model="c100" + sysfont="08-Rockfont" ;; 55|sansaclip) @@ -2583,6 +2588,7 @@ fi t_cpu="arm" t_manufacturer="as3525" t_model="sansa-clip" + sysfont="08-Rockfont" if [ "$ARG_ARM_THUMB" != 0 ]; then ARG_ARM_THUMB=1; fi arm9tdmicc GCCOPTS=`echo $GCCOPTS | sed 's/ -O / -Os /'` @@ -2625,6 +2631,7 @@ fi t_cpu="arm" t_manufacturer="as3525" t_model="sansa-m200v4" + sysfont="08-Rockfont" if [ "$ARG_ARM_THUMB" != 0 ]; then ARG_ARM_THUMB=1; fi arm9tdmicc GCCOPTS=`echo $GCCOPTS | sed 's/ -O / -Os /'` @@ -2691,6 +2698,7 @@ fi t_cpu="arm" t_manufacturer="as3525" t_model="sansa-clipv2" + sysfont="08-Rockfont" arm926ejscc ;; @@ -2732,6 +2740,7 @@ fi t_cpu="arm" t_manufacturer="as3525" t_model="sansa-clipplus" + sysfont="08-Rockfont" arm926ejscc ;; @@ -4028,6 +4037,7 @@ fi t_cpu="mips" t_manufacturer="ingenic_jz47xx" t_model="xduoo_x3" + sysfont="08-Rockfont" ;; 242|xduoox3ii) @@ -4707,6 +4717,7 @@ export MODELNAME=${modelname} export FLASHFILE=${flash} export TARGET_ID=${target_id} export TARGET=-D${target} +export SYSFONT=${sysfont} export ARCH=${arch} export ARCH_VERSION=${arch_version} export CPU=${t_cpu} |