forked from len0rd/rockbox
Allow building two Neo targets...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4129 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
0167b55083
commit
503ce1bc04
1 changed files with 17 additions and 1 deletions
18
tools/configure
vendored
18
tools/configure
vendored
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue