diff options
author | Dave Chapman <dave@dchapman.com> | 2008-05-02 19:12:09 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2008-05-02 19:12:09 +0000 |
commit | f2042983f08cd49404be0b6916fc73d778fe8dba (patch) | |
tree | 33a84414ca4d94770f900e92074c18ecadf23ed7 /tools | |
parent | 4cf4b5c2aef075b719e834f30d17c0986fadb658 (diff) |
Add the Sansa M200 (v1) as a target - it's extremely similar to the Logik DAX (the LCD driver worked unchanged). Plus various tcc77x work, including a working tick interrupt (enabled in the bootloader). Rockbox itself builds for the M200 (there are no keymaps yet for the DAX), but doesn't progress very far due to the lack of an ATA (NAND flash) driver.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17306 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/configure | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 93a0484b6a..1f71c8b51c 100755 --- a/tools/configure +++ b/tools/configure @@ -670,7 +670,7 @@ cat <<EOF 30) X5/X5V/X5L 40) Gigabeat F 50) Sansa e200 31) M5/M5L 41) Gigabeat S 51) Sansa e200R 32) 7 52) Sansa c200 - 33) Cowon D2 + 33) Cowon D2 53) Sansa m200 34) M3/M3L ==Tatung== ==Olympus== ==Logik== @@ -1550,6 +1550,30 @@ fi t_model="sansa-c200" ;; + 53|m200) + target_id=31 + modelname="m200" + target="-DSANSA_M200" + memory=2 # always + arm946cc + tool="$rootdir/tools/scramble -add=m200" + boottool="$rootdir/tools/scramble -tcc=crc" + bootoutput="player.rom" + bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" + bmp2rb_native="$rootdir/tools/bmp2rb -f 0" + output="rockbox.m200" + appextra="recorder:gui" + plugins="" + swcodec="yes" + # toolset is the tools within the tools directory that we build for + # this particular target. + toolset=$tccbitmaptools + # architecture, manufacturer and model for the target-tree build + t_cpu="arm" + t_manufacturer="tcc77x" + t_model="m200" + ;; + 60|tpj1022) target_id=25 modelname="tpj1022" |