diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2006-09-30 23:28:13 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-01 00:39:25 -0700 |
commit | 0847062ad57e6d2d77875104d66f413a89769809 (patch) | |
tree | 1a426022cff23084b47fb148d59319928b95dc27 /init/Kconfig | |
parent | 1713e903c680de4934837689abecc5df02f463ac (diff) | |
download | op-kernel-dev-0847062ad57e6d2d77875104d66f413a89769809.zip op-kernel-dev-0847062ad57e6d2d77875104d66f413a89769809.tar.gz |
[PATCH] fix EMBEDDED + SYSCTL menu
SYSCTL should still depend on EMBEDDED. This unbreaks the EMBEDDED menu
(from the recent SYSCTL_SYCALL menu option patch).
Fix typos in new SYSCTL_SYSCALL menu.
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'init/Kconfig')
-rw-r--r-- | init/Kconfig | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/init/Kconfig b/init/Kconfig index 899e46e..d2d7270 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -257,6 +257,9 @@ config CC_OPTIMIZE_FOR_SIZE If unsure, say N. +config SYSCTL + bool + menuconfig EMBEDDED bool "Configure standard kernel features (for small systems)" help @@ -272,11 +275,8 @@ config UID16 help This enables the legacy 16-bit UID syscall wrappers. -config SYSCTL - bool - config SYSCTL_SYSCALL - bool "Sysctl syscall support" + bool "Sysctl syscall support" if EMBEDDED default n select SYSCTL ---help--- @@ -285,11 +285,11 @@ config SYSCTL_SYSCALL and use. The interface in /proc/sys is now the primary and what everyone uses. - Nothing has been using the binary sysctl interface for some time + Nothing has been using the binary sysctl interface for some time now so nothing should break if you disable sysctl syscall - support, and you kernel will get marginally smaller. + support, and your kernel will get marginally smaller. - Unless you have an application that uses the sys_syscall interface + Unless you have an application that uses the sys_sysctl interface you should probably say N here. config KALLSYMS |