diff options
| author | Barry Wardell <rockbox@barrywardell.net> | 2006-08-19 19:21:17 +0000 |
|---|---|---|
| committer | Barry Wardell <rockbox@barrywardell.net> | 2006-08-19 19:21:17 +0000 |
| commit | 99c2dc52841aabd0af66b3cd43452478acf22c31 (patch) | |
| tree | 75858a6f73e3562e1681740634ce6613b852d9ba /tools | |
| parent | 9fdb611547342c1dffdff84efdb9745c524a8f4d (diff) | |
| download | rockbox-99c2dc52841aabd0af66b3cd43452478acf22c31.zip rockbox-99c2dc52841aabd0af66b3cd43452478acf22c31.tar.gz rockbox-99c2dc52841aabd0af66b3cd43452478acf22c31.tar.bz2 rockbox-99c2dc52841aabd0af66b3cd43452478acf22c31.tar.xz | |
Add new build target for iriver H10 5/6Gb.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10661 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 28 | ||||
| -rwxr-xr-x | tools/mkmi4.sh | 3 |
2 files changed, 29 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure index e228a2f..dad1042 100755 --- a/tools/configure +++ b/tools/configure @@ -460,8 +460,9 @@ toolsdir='\$(ROOTDIR)/tools' echo "19 - iriver iFP-790" echo "20 - Toshiba Gigabeat F" echo "21 - iPod Mini 2G" - echo "22 - iriver H10" + echo "22 - iriver H10 20Gb" echo "23 - SanDisk Sansa e200" + echo "24 - iriver H10 5/6Gb" target_id=`input`; @@ -933,6 +934,29 @@ toolsdir='\$(ROOTDIR)/tools' t_model="sansa-e200" ;; + 24) + archos="h10_5gb" + target="-DIRIVER_H10_5GB" + memory=32 # always + arm7tdmicc + tool="$rootdir/tools/mkmi4.sh h10_5gb" + bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_native="$rootdir/tools/bmp2rb -f 5" + output="H10.mi4" + appextra="recorder:gui" + archosrom="" + flash="" + plugins="yes" + codecs="libmad liba52 libffmpegFLAC libTremor libwavpack dumb libmusepack libalac libfaad libm4a" + # toolset is the tools within the tools directory that we build for + # this particular target. + toolset=$genericbitmaptools + # architecture, manufacturer and model for the target-tree build + t_cpu="arm" + t_manufacturer="iriver" + t_model="h10" + ;; + *) echo "Please select an actual target platform!" exit @@ -988,7 +1012,7 @@ fi case $option in [Bb]) case $archos in - h100|h120|h300|x5|ipodcolor|ipodnano|ipodvideo|ipod3g|ipod4g|ipodmini|ipodmini2g|gigabeatf|h10|e200) + h100|h120|h300|x5|ipodcolor|ipodnano|ipodvideo|ipod3g|ipod4g|ipodmini|ipodmini2g|gigabeatf|h10|e200|h10_5gb) extradefines="-DBOOTLOADER" # for target makefile symbol EXTRA_DEFINES appsdir='\$(ROOTDIR)/bootloader' apps="bootloader" diff --git a/tools/mkmi4.sh b/tools/mkmi4.sh index ee9c8f1..00fee9b 100755 --- a/tools/mkmi4.sh +++ b/tools/mkmi4.sh @@ -63,6 +63,9 @@ case $target in h10) tea=20gc_eng ;; + h10_5gb) + tea=default + ;; *) echo "unsupported target" help |