diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2003-12-12 10:48:40 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2003-12-12 10:48:40 +0000 |
| commit | 503ce1bc0426fc7987371268db88dfc29dcf3fee (patch) | |
| tree | a40cabe1d1aaa831409ff56459421febacc538a6 /tools | |
| parent | 0167b5508397fbfd81677078736683cf4f0fb319 (diff) | |
| download | rockbox-503ce1bc0426fc7987371268db88dfc29dcf3fee.zip rockbox-503ce1bc0426fc7987371268db88dfc29dcf3fee.tar.gz rockbox-503ce1bc0426fc7987371268db88dfc29dcf3fee.tar.bz2 rockbox-503ce1bc0426fc7987371268db88dfc29dcf3fee.tar.xz | |
Allow building two Neo targets...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4129 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 8a527f7..4e6a6d3 100755 --- a/tools/configure +++ b/tools/configure @@ -223,12 +223,14 @@ if [ -z "$archos" ]; then # Figure out target platform # - echo "Enter target platform: (defaults to Recorder)" + echo "Enter target platform: (default is Archos Recorder)" echo "1 - Archos Player/Studio" echo "2 - Archos Recorder" echo "3 - Archos FM Recorder" echo "4 - Archos Recorder v2" + echo "5 - Neo mStation" + echo "6 - Neo 35" getit=`input`; @@ -255,6 +257,20 @@ if [ -z "$archos" ]; then keypad="-DHAVE_RECORDER_KEYPAD" ;; + 5) + archos="neomstation" + target="-DNEO_MSTATION" + display="-DHAVE_NEOLCD_CHARCELLS" + keypad="-DHAVE_NEO_KEYPAD" + ;; + + 6) + archos="neo35" + target="-DNEO_35" + display="-DHAVE_NEOLCD_CHARCELLS" + keypad="-DHAVE_NEO_KEYPAD" + ;; + *) archos="recorder" target="-DARCHOS_RECORDER" |