diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-10-15 12:25:57 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-10-15 12:25:57 +0000 |
commit | 0a4b247080dd132e847071adbc006ad9de2ca608 (patch) | |
tree | 5eb04ea6eefba517233d9c649ce5f6c56e6d16be /tools | |
parent | 6e0a75c596a6c4ec5ec2820e1873c8527aec5007 (diff) | |
download | rockbox-0a4b247080dd132e847071adbc006ad9de2ca608.tar.gz rockbox-0a4b247080dd132e847071adbc006ad9de2ca608.zip |
The player firmware now autodetects the LCD type. No need for two player versions anymore
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2658 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/configure | 13 |
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" |