1
0
Fork 0
forked from len0rd/rockbox

Remove outdated (and buggy) configuration option for the 8MB mod. This is configured by selecting memory size directly.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31638 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2012-01-08 17:38:40 +00:00
parent 334e61293e
commit 8b4805203b

9
tools/configure vendored
View file

@ -720,9 +720,6 @@ whichadvanced () {
printf "Enter your developer options (press only enter when done)\n\ printf "Enter your developer options (press only enter when done)\n\
(D)EBUG, (L)ogf, Boot(c)hart, (S)imulator, (P)rofiling, (V)oice, (W)in32 crosscompile,\n\ (D)EBUG, (L)ogf, Boot(c)hart, (S)imulator, (P)rofiling, (V)oice, (W)in32 crosscompile,\n\
(T)est plugins, S(m)all C lib:" (T)est plugins, S(m)all C lib:"
if [ "$memory" = "2" ]; then
printf ", (8)MB MOD"
fi
if [ "$modelname" = "archosplayer" ]; then if [ "$modelname" = "archosplayer" ]; then
printf ", Use (A)TA poweroff" printf ", Use (A)TA poweroff"
fi fi
@ -789,12 +786,6 @@ whichadvanced () {
echo "Voice build selected" echo "Voice build selected"
voice="yes" voice="yes"
;; ;;
8)
if [ "$memory" = "2" ]; then
memory="8"
echo "Memory size selected: 8MB"
fi
;;
[Aa]) [Aa])
if [ "$modelname" = "archosplayer" ]; then if [ "$modelname" = "archosplayer" ]; then
have_ata_poweroff="#define HAVE_ATA_POWER_OFF" have_ata_poweroff="#define HAVE_ATA_POWER_OFF"