diff options
| author | Andrew Ryabinin <ryabinin.a.a@gmail.com> | 2011-11-03 11:53:02 +0000 |
|---|---|---|
| committer | Andrew Ryabinin <ryabinin.a.a@gmail.com> | 2011-11-03 11:53:02 +0000 |
| commit | 2164aab9020bb37ec71a24461c4c42bc4e2eb2d3 (patch) | |
| tree | dbf138f0f8d84789b335e6059508176a71fe0cde /tools | |
| parent | 50211e20548bf3a5f7781489269a297cad58713e (diff) | |
| download | rockbox-2164aab9020bb37ec71a24461c4c42bc4e2eb2d3.zip rockbox-2164aab9020bb37ec71a24461c4c42bc4e2eb2d3.tar.gz rockbox-2164aab9020bb37ec71a24461c4c42bc4e2eb2d3.tar.bz2 rockbox-2164aab9020bb37ec71a24461c4c42bc4e2eb2d3.tar.xz | |
Added HiFiMAN HM-801 target. FS#12355. This also renames tda1543.{ch} used by HM-60x to dummy_codec.{ch} as it works for PCM1704 used by HM-801.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30891 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index 5b84f87..42cd2f8 100755 --- a/tools/configure +++ b/tools/configure @@ -1292,6 +1292,7 @@ cat <<EOF 202) Nokia N8xx 203) Nokia N900 ==ROCKCHIP== ==HiFiMAN== 204) Pandora 180) rk27xx generic 190) HM-60x + 191) HM-801 EOF @@ -3054,6 +3055,29 @@ fi t_model="hm60x" ;; + 191|hifimanhm801) + target_id=80 + modelname="hifimanhm801" + target="-DHM801" + memory=16 + arm7ejscc + tool="$rootdir/tools/scramble -add=rk27" + bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_native="$rootdir/tools/bmp2rb -f 4" + output="rockbox.rk27" + bootoutput="bootloader.rk27" + 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="hm801" + ;; + 200|sdlapp) application="yes" target_id=73 |