summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2008-05-02 19:12:09 +0000
committerDave Chapman <dave@dchapman.com>2008-05-02 19:12:09 +0000
commitf2042983f08cd49404be0b6916fc73d778fe8dba (patch)
tree33a84414ca4d94770f900e92074c18ecadf23ed7 /tools/configure
parent4cf4b5c2aef075b719e834f30d17c0986fadb658 (diff)
downloadrockbox-f2042983f08cd49404be0b6916fc73d778fe8dba.tar.gz
rockbox-f2042983f08cd49404be0b6916fc73d778fe8dba.zip
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/configure')
-rwxr-xr-xtools/configure26
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
670 30) X5/X5V/X5L 40) Gigabeat F 50) Sansa e200 670 30) X5/X5V/X5L 40) Gigabeat F 50) Sansa e200
671 31) M5/M5L 41) Gigabeat S 51) Sansa e200R 671 31) M5/M5L 41) Gigabeat S 51) Sansa e200R
672 32) 7 52) Sansa c200 672 32) 7 52) Sansa c200
673 33) Cowon D2 673 33) Cowon D2 53) Sansa m200
674 34) M3/M3L 674 34) M3/M3L
675 675
676 ==Tatung== ==Olympus== ==Logik== 676 ==Tatung== ==Olympus== ==Logik==
@@ -1550,6 +1550,30 @@ fi
1550 t_model="sansa-c200" 1550 t_model="sansa-c200"
1551 ;; 1551 ;;
1552 1552
1553 53|m200)
1554 target_id=31
1555 modelname="m200"
1556 target="-DSANSA_M200"
1557 memory=2 # always
1558 arm946cc
1559 tool="$rootdir/tools/scramble -add=m200"
1560 boottool="$rootdir/tools/scramble -tcc=crc"
1561 bootoutput="player.rom"
1562 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
1563 bmp2rb_native="$rootdir/tools/bmp2rb -f 0"
1564 output="rockbox.m200"
1565 appextra="recorder:gui"
1566 plugins=""
1567 swcodec="yes"
1568 # toolset is the tools within the tools directory that we build for
1569 # this particular target.
1570 toolset=$tccbitmaptools
1571 # architecture, manufacturer and model for the target-tree build
1572 t_cpu="arm"
1573 t_manufacturer="tcc77x"
1574 t_model="m200"
1575 ;;
1576
1553 60|tpj1022) 1577 60|tpj1022)
1554 target_id=25 1578 target_id=25
1555 modelname="tpj1022" 1579 modelname="tpj1022"