diff options
| author | Andrew Ryabinin <ryabinin.a.a@gmail.com> | 2013-06-02 23:03:26 +0400 |
|---|---|---|
| committer | Andrew Ryabinin <ryabinin.a.a@gmail.com> | 2013-11-05 09:59:45 +0400 |
| commit | 3a97e12fc58bd413c81d827c7b32a8cfd08b4d2b (patch) | |
| tree | 4a827d570ab32161783d9327a748d87f601605c5 /tools | |
| parent | a170c99170589488531f7f576ad5e248b1c7c589 (diff) | |
| download | rockbox-3a97e12fc58bd413c81d827c7b32a8cfd08b4d2b.zip rockbox-3a97e12fc58bd413c81d827c7b32a8cfd08b4d2b.tar.gz rockbox-3a97e12fc58bd413c81d827c7b32a8cfd08b4d2b.tar.bz2 rockbox-3a97e12fc58bd413c81d827c7b32a8cfd08b4d2b.tar.xz | |
Introduce HiFi E.T. MA8/MA8C ports.
HiFi E.T. MA8 is almost the same as MA9 except
another DAC(pcm1792 in ma8, df1704 in ma9).
MA8 has ILI9342 lcd, MA8C has ILI9342C lcd.
Change-Id: If2ac04f5a3382590b2a392c46286559f54b2ed6a
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 50 |
1 files changed, 48 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure index 368a186..328c548 100755 --- a/tools/configure +++ b/tools/configure @@ -1331,8 +1331,8 @@ cat <<EOF 201) Android ==HiFi E.T.== 191) HM-801 202) Nokia N8xx 210) MA9 203) Nokia N900 211) MA9C ==Sony== - 204) Pandora 220) NWZ-E370 series - 205) Samsung YP-R0 221) NWZ-E360 series + 204) Pandora 212) MA8 220) NWZ-E370 series + 205) Samsung YP-R0 213) MA8C 221) NWZ-E360 series 206) Android MIPS 207) Android x86 EOF @@ -3521,6 +3521,52 @@ fi t_model="ma" ;; + 212|hifietma8) + target_id=85 + modelname="hifietma8" + target="MA8" + memory=16 + arm7ejscc + tool="$rootdir/tools/scramble -rkw -modelnum=85" + 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="ma" + ;; + + 213|hifietma8c) + target_id=91 + modelname="hifietma8c" + target="MA8C" + memory=16 + arm7ejscc + tool="$rootdir/tools/scramble -rkw -modelnum=91" + 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="ma" + ;; + 220|sonynwze370) target_id=88 modelname="sonynwze370" |