summaryrefslogtreecommitdiffstats
path: root/tools/configure
diff options
context:
space:
mode:
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure13
1 files changed, 3 insertions, 10 deletions
diff --git a/tools/configure b/tools/configure
index 916ae28c2a..f02866d652 100755
--- a/tools/configure
+++ b/tools/configure
@@ -178,27 +178,20 @@ if [ -z "$target" ]; then
echo "Enter target platform: (defaults to Recorder)"
- echo "1 - Archos Player old LCD"
- echo "2 - Archos Player/Studio new LCD"
- echo "3 - Archos Recorder"
+ echo "1 - Archos Player/Studio"
+ echo "2 - Archos Recorder"
getit=`input`;
case $getit in
1)
- target="-DARCHOS_PLAYER_OLD"
- display="-DHAVE_LCD_CHARCELLS"
- keypad="-DHAVE_PLAYER_KEYPAD"
- ;;
-
- 2)
target="-DARCHOS_PLAYER"
display="-DHAVE_LCD_CHARCELLS"
keypad="-DHAVE_PLAYER_KEYPAD"
;;
- *|3)
+ *|2)
target="-DARCHOS_RECORDER"
display="-DHAVE_LCD_BITMAP"
keypad="-DHAVE_RECORDER_KEYPAD"