diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2018-06-29 16:09:28 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2019-01-02 08:10:01 -0500 |
commit | d4942cc74c82c465ea395637c77ed06565b8b497 (patch) | |
tree | 8c1fa737c93f8a2ade5a1566857dc4dc8f578bd6 /tools/configure | |
parent | af9459a7992596e932c6d8cc0a6366ff0f0b0fca (diff) |
Add Xuelin iHIFI 770/770C/800 support
Taken from the xvortex fork (Roman Stolyarov)
Ported, rebased, and cleaned up by myself.
Change-Id: I7b2bca2d29502f2e4544e42f3d122786dd4b7978
Diffstat (limited to 'tools/configure')
-rwxr-xr-x | tools/configure | 80 |
1 files changed, 75 insertions, 5 deletions
diff --git a/tools/configure b/tools/configure index e7f254ada7..cad2238d9b 100755 --- a/tools/configure +++ b/tools/configure @@ -1548,13 +1548,14 @@ cat <<EOF 206) Android MIPS ==IHIFI== 222) NWZ-E450 series 207) Android x86 230) 760 223) NWZ-E460 series 208) Samsung YP-R1 231) 960 224) NWZ-E470 series - 225) NWZ-E580 series - ==iBasso== ==Agptek== 226) NWZ-A10 series - 232) DX50 240) Rocker 227) NW-A20 series + 250) 770C 225) NWZ-E580 series + ==iBasso== 251) 770 226) NWZ-A10 series + 232) DX50 252) 800 227) NW-A20 series 233) DX90 228) NWZ-A860 series 229) NWZ-S750 series - ==xDuoo== - 241) X3 + ==xDuoo== ==AgpTek== + 241) X3 240) Rocker + EOF buildfor=`input`; @@ -4257,6 +4258,75 @@ fi t_model="xduoo_x3" ;; + 250|ihifi770C) + target_id=107 + modelname="ihifi770c" + target="IHIFI770C" + memory=16 + arm7ejscc + tool="$rootdir/tools/scramble -rkw -modelnum=97" + bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_native="$rootdir/tools/bmp2rb -f 4" + output="rockbox.rkw" + bootoutput="bootloader.rkw" + appextra="recorder:gui" + plugins="yes" + 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="ihifi2" + ;; + + 251|ihifi770) + target_id=108 + modelname="ihifi770" + target="IHIFI770" + memory=16 + arm7ejscc + tool="$rootdir/tools/scramble -rkw -modelnum=98" + bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_native="$rootdir/tools/bmp2rb -f 4" + output="rockbox.rkw" + bootoutput="bootloader.rkw" + appextra="recorder:gui" + plugins="yes" + 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="ihifi2" + ;; + + 252|ihifi800) + target_id=109 + modelname="ihifi800" + target="IHIFI800" + memory=16 + arm7ejscc + tool="$rootdir/tools/scramble -rkw -modelnum=99" + bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_native="$rootdir/tools/bmp2rb -f 4" + output="rockbox.rkw" + bootoutput="bootloader.rkw" + appextra="recorder:gui" + plugins="yes" + 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="ihifi2" + ;; + *) echo "Please select a supported target platform!" exit 7 |