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

11
tools/configure vendored
View file

@ -720,9 +720,6 @@ whichadvanced () {
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\
(T)est plugins, S(m)all C lib:"
if [ "$memory" = "2" ]; then
printf ", (8)MB MOD"
fi
if [ "$modelname" = "archosplayer" ]; then
printf ", Use (A)TA poweroff"
fi
@ -789,12 +786,6 @@ whichadvanced () {
echo "Voice build selected"
voice="yes"
;;
8)
if [ "$memory" = "2" ]; then
memory="8"
echo "Memory size selected: 8MB"
fi
;;
[Aa])
if [ "$modelname" = "archosplayer" ]; then
have_ata_poweroff="#define HAVE_ATA_POWER_OFF"
@ -1183,7 +1174,7 @@ ARG_ARM_EABI=
ARG_ARM_THUMB=
ARG_PREFIX="$PREFIX"
ARG_THREAD_SUPPORT=
err=
err=
for arg in "$@"; do
case "$arg" in
--ccache) ARG_CCACHE=1;;