aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorDave Hansen <haveblue@us.ibm.com>2005-06-23 03:07:47 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-23 12:45:03 -0400
commit44d0f805c77902a22dda244fd092b4567066b2b9 (patch)
tree62732a526b6ade8b9cc0f403130ddf4d4b4fdf46 /mm
parent93b7504e3e6c1d98586854806e51bea329ea3aa9 (diff)
[PATCH] sparsemem: fix minor "defaults" issue in mm/Kconfig
The following patch applies on top of 2.6.12-rc2-mm1. It fixes a minor user interaction issue, and an early reference to SPARSEMEM. This "choice" menu would always default to FLATMEM, as it was listed first. Move it to the end so that the other defaults have a chance first. Signed-off-by: Dave Hansen <haveblue@us.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/Kconfig3
1 files changed, 1 insertions, 2 deletions
diff --git a/mm/Kconfig b/mm/Kconfig
index 15c131393639..0320f066228c 100644
--- a/mm/Kconfig
+++ b/mm/Kconfig
@@ -1,8 +1,7 @@
1choice 1choice
2 prompt "Memory model" 2 prompt "Memory model"
3 default FLATMEM
4 default SPARSEMEM if ARCH_SPARSEMEM_DEFAULT
5 default DISCONTIGMEM if ARCH_DISCONTIGMEM_DEFAULT 3 default DISCONTIGMEM if ARCH_DISCONTIGMEM_DEFAULT
4 default FLATMEM
6 5
7config FLATMEM 6config FLATMEM
8 bool "Flat Memory" 7 bool "Flat Memory"