summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2012-01-08 17:38:40 +0000
committerJens Arnold <amiconn@rockbox.org>2012-01-08 17:38:40 +0000
commit8b4805203b77d1bd92de844cf6eb7bfb718b7add (patch)
tree71bb95ecb048eba70c32894ad1cd91737d731353
parent334e61293edeff7d2d3ce5ec395695a41868e0a5 (diff)
downloadrockbox-8b4805203b77d1bd92de844cf6eb7bfb718b7add.tar.gz
rockbox-8b4805203b77d1bd92de844cf6eb7bfb718b7add.zip
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
-rwxr-xr-xtools/configure11
1 files changed, 1 insertions, 10 deletions
diff --git a/tools/configure b/tools/configure
index 9e95cd0452..c265c1ef53 100755
--- a/tools/configure
+++ b/tools/configure
@@ -720,9 +720,6 @@ whichadvanced () {
720 printf "Enter your developer options (press only enter when done)\n\ 720 printf "Enter your developer options (press only enter when done)\n\
721(D)EBUG, (L)ogf, Boot(c)hart, (S)imulator, (P)rofiling, (V)oice, (W)in32 crosscompile,\n\ 721(D)EBUG, (L)ogf, Boot(c)hart, (S)imulator, (P)rofiling, (V)oice, (W)in32 crosscompile,\n\
722(T)est plugins, S(m)all C lib:" 722(T)est plugins, S(m)all C lib:"
723 if [ "$memory" = "2" ]; then
724 printf ", (8)MB MOD"
725 fi
726 if [ "$modelname" = "archosplayer" ]; then 723 if [ "$modelname" = "archosplayer" ]; then
727 printf ", Use (A)TA poweroff" 724 printf ", Use (A)TA poweroff"
728 fi 725 fi
@@ -789,12 +786,6 @@ whichadvanced () {
789 echo "Voice build selected" 786 echo "Voice build selected"
790 voice="yes" 787 voice="yes"
791 ;; 788 ;;
792 8)
793 if [ "$memory" = "2" ]; then
794 memory="8"
795 echo "Memory size selected: 8MB"
796 fi
797 ;;
798 [Aa]) 789 [Aa])
799 if [ "$modelname" = "archosplayer" ]; then 790 if [ "$modelname" = "archosplayer" ]; then
800 have_ata_poweroff="#define HAVE_ATA_POWER_OFF" 791 have_ata_poweroff="#define HAVE_ATA_POWER_OFF"
@@ -1183,7 +1174,7 @@ ARG_ARM_EABI=
1183ARG_ARM_THUMB= 1174ARG_ARM_THUMB=
1184ARG_PREFIX="$PREFIX" 1175ARG_PREFIX="$PREFIX"
1185ARG_THREAD_SUPPORT= 1176ARG_THREAD_SUPPORT=
1186err= 1177err=
1187for arg in "$@"; do 1178for arg in "$@"; do
1188 case "$arg" in 1179 case "$arg" in
1189 --ccache) ARG_CCACHE=1;; 1180 --ccache) ARG_CCACHE=1;;