summaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorAndrew Morton <akpm@digeo.com>2003-03-08 03:25:21 -0800
committerJames Bottomley <jejb@raven.il.steeleye.com>2003-03-08 03:25:21 -0800
commitfc60971f01d514e0530bf6de297bbe2cbda7c852 (patch)
tree0ea4aaf0c78cf500d06b31795326cbbbd9c2159d /init
parente7a8805739641f974fc8ecdd053f23b8eb3d2722 (diff)
[PATCH] move CONFIG_SWAP around
Patch from Tom Rini <trini@kernel.crashing.org> Take CONFIG_SWAP out of the top-level menu into the general setup menu. Make it dependent on CONFIG_MMU and common to all architectures.
Diffstat (limited to 'init')
-rw-r--r--init/Kconfig10
1 files changed, 10 insertions, 0 deletions
diff --git a/init/Kconfig b/init/Kconfig
index 887abc316ee2..7dec6b722483 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -37,6 +37,16 @@ endmenu
menu "General setup"
+config SWAP
+ bool "Support for paging of anonymous memory"
+ depends on MMU
+ default y
+ help
+ This option allows you to choose whether you want to have support
+ for socalled swap devices or swap files in your kernel that are
+ used to provide more virtual memory than the actual RAM present
+ in your computer. If unusre say Y.
+
config SYSVIPC
bool "System V IPC"
---help---