diff options
| author | Andrew Ryabinin <ryabinin.a.a@gmail.com> | 2013-11-16 18:21:00 +0400 |
|---|---|---|
| committer | Andrew Ryabinin <ryabinin.a.a@gmail.com> | 2013-12-16 00:45:18 +0400 |
| commit | 5b5f0755d6d7fd9e3fdfdb479caeb7fafd0a9960 (patch) | |
| tree | 4b9c567df8a5aefb46ace938a034988b7fdb045d /tools | |
| parent | 04c59b8a15f96812081ea8730337825af679fbce (diff) | |
| download | rockbox-5b5f0755d6d7fd9e3fdfdb479caeb7fafd0a9960.zip rockbox-5b5f0755d6d7fd9e3fdfdb479caeb7fafd0a9960.tar.gz rockbox-5b5f0755d6d7fd9e3fdfdb479caeb7fafd0a9960.tar.bz2 rockbox-5b5f0755d6d7fd9e3fdfdb479caeb7fafd0a9960.tar.xz | |
Introduce IHIFI760/960 targets.
Change-Id: Ie36e48742c0ed9aa3fd6f49aa034a11d2492327c
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index b33c798..08b0e25 100755 --- a/tools/configure +++ b/tools/configure @@ -1336,6 +1336,11 @@ cat <<EOF 205) Samsung YP-R0 213) MA8C 221) NWZ-E360 series 206) Android MIPS 207) Android x86 + +==IHIFI== + 230) 760 + 231) 960 + EOF buildfor=`input`; @@ -3648,6 +3653,52 @@ fi arm926ejscc ;; + 230|ihifi760) + target_id=92 + modelname="ihifi760" + target="IHIFI760" + memory=16 + arm7ejscc + tool="$rootdir/tools/scramble -rkw -modelnum=92" + bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_native="$rootdir/tools/bmp2rb -f 4" + output="rockbox.rkw" + bootoutput="bootloader.rkw" + appextra="recorder:gui" + plugins="" + swcodec="yes" + # 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="rk27xx" + t_model="ihifi" + ;; + + 231|ihifi960) + target_id=93 + modelname="ihifi960" + target="IHIFI960" + memory=16 + arm7ejscc + tool="$rootdir/tools/scramble -rkw -modelnum=93" + bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_native="$rootdir/tools/bmp2rb -f 4" + output="rockbox.rkw" + bootoutput="bootloader.rkw" + appextra="recorder:gui" + plugins="" + swcodec="yes" + # 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="rk27xx" + t_model="ihifi" + ;; + *) echo "Please select a supported target platform!" exit 7 |