diff options
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure index 5e32247..efa9c33 100755 --- a/tools/configure +++ b/tools/configure @@ -1328,8 +1328,8 @@ cat <<EOF 201) Android ==ROCKCHIP== 202) Nokia N8xx 180) rk27xx generic ==HiFiMAN== 203) Nokia N900 190) HM-60x - 204) Pandora 191) HM-801 - 205) Samsung YP-R0 + 204) Pandora ==HiFi E.T.== 191) HM-801 + 205) Samsung YP-R0 210) MA9 206) Android MIPS 207) Android x86 EOF @@ -3411,6 +3411,29 @@ fi t_model="app" ;; + 210|hifietma9) + target_id=83 + modelname="hifietma9" + target="MA9" + memory=16 + arm7ejscc + tool="$rootdir/tools/scramble -rkw -modelnum=83" + 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" + ;; + *) echo "Please select a supported target platform!" exit 7 |