summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-09-01 06:45:55 +0000
committerEric Andersen <andersen@codepoet.org>2002-09-01 06:45:55 +0000
commit2bec97c076e7183b4ce4e5de3739299bbd3a06fa (patch)
treee86eaef5a82709a64df6f0f712f325ab0be70ae0
parent1130976f8ec187551c5c485bef3a0464a72f06a1 (diff)
downloadbusybox-w32-2bec97c076e7183b4ce4e5de3739299bbd3a06fa.tar.gz
busybox-w32-2bec97c076e7183b4ce4e5de3739299bbd3a06fa.tar.bz2
busybox-w32-2bec97c076e7183b4ce4e5de3739299bbd3a06fa.zip
Some CML1 grammar fixes
-Erik
-rw-r--r--modutils/config.in2
-rw-r--r--shell/config.in3
-rw-r--r--sysdeps/linux/config.in2
-rw-r--r--util-linux/config.in4
4 files changed, 7 insertions, 4 deletions
diff --git a/modutils/config.in b/modutils/config.in
index 7a1d56c24..7fe7ec195 100644
--- a/modutils/config.in
+++ b/modutils/config.in
@@ -14,11 +14,11 @@ bool 'rmmod' CONFIG_RMMOD
14 14
15if [ "$CONFIG_INSMOD" = "y" ]; then 15if [ "$CONFIG_INSMOD" = "y" ]; then
16 comment 'Module support options' 16 comment 'Module support options'
17 bool 'Support for older (pre 2.1) Linux kernels' CONFIG_FEATURE_OLD_MODULE_INTERFACE
17 if [ "$CONFIG_FEATURE_OLD_MODULE_INTERFACE" = "n" ] ; then 18 if [ "$CONFIG_FEATURE_OLD_MODULE_INTERFACE" = "n" ] ; then
18 define_bool CONFIG_FEATURE_NEW_MODULE_INTERFACE y 19 define_bool CONFIG_FEATURE_NEW_MODULE_INTERFACE y
19 fi 20 fi
20 bool 'Support for new (post 2.1) kernels' CONFIG_FEATURE_NEW_MODULE_INTERFACE 21 bool 'Support for new (post 2.1) kernels' CONFIG_FEATURE_NEW_MODULE_INTERFACE
21 bool 'Support for older (pre 2.1) Linux kernels' CONFIG_FEATURE_OLD_MODULE_INTERFACE
22 bool 'Support module version checking' CONFIG_FEATURE_INSMOD_VERSION_CHECKING 22 bool 'Support module version checking' CONFIG_FEATURE_INSMOD_VERSION_CHECKING
23 bool 'Support image in kernel memory optimization (uClinux only)' CONFIG_FEATURE_INSMOD_LOADINKMEM 23 bool 'Support image in kernel memory optimization (uClinux only)' CONFIG_FEATURE_INSMOD_LOADINKMEM
24fi 24fi
diff --git a/shell/config.in b/shell/config.in
index d6a7f1686..b34c23845 100644
--- a/shell/config.in
+++ b/shell/config.in
@@ -11,7 +11,8 @@ choice 'Choose your default shell' \
11 hush CONFIG_FEATURE_SH_IS_HUSH \ 11 hush CONFIG_FEATURE_SH_IS_HUSH \
12 lash CONFIG_FEATURE_SH_IS_LASH \ 12 lash CONFIG_FEATURE_SH_IS_LASH \
13 msh CONFIG_FEATURE_SH_IS_MSH \ 13 msh CONFIG_FEATURE_SH_IS_MSH \
14 none CONFIG_FEATURE_SH_IS_NONE" 14 none CONFIG_FEATURE_SH_IS_NONE" \
15 ash
15 16
16if [ "$CONFIG_FEATURE_SH_IS_ASH" = "y" ] ; then 17if [ "$CONFIG_FEATURE_SH_IS_ASH" = "y" ] ; then
17 define_bool CONFIG_ASH y 18 define_bool CONFIG_ASH y
diff --git a/sysdeps/linux/config.in b/sysdeps/linux/config.in
index d799c94ea..c1860556d 100644
--- a/sysdeps/linux/config.in
+++ b/sysdeps/linux/config.in
@@ -28,7 +28,6 @@ endmenu
28source archival/config.in 28source archival/config.in
29source console-tools/config.in 29source console-tools/config.in
30source editors/config.in 30source editors/config.in
31source fileutils/config.in
32source findutils/config.in 31source findutils/config.in
33source init/config.in 32source init/config.in
34source miscutils/config.in 33source miscutils/config.in
@@ -41,4 +40,5 @@ source shellutils/config.in
41source sysklogd/config.in 40source sysklogd/config.in
42source textutils/config.in 41source textutils/config.in
43source util-linux/config.in 42source util-linux/config.in
43source fileutils/config.in
44 44
diff --git a/util-linux/config.in b/util-linux/config.in
index bcc99bbe1..25d0c5ad4 100644
--- a/util-linux/config.in
+++ b/util-linux/config.in
@@ -43,7 +43,9 @@ bool 'swaponoff' CONFIG_SWAPONOFF
43bool 'mount' CONFIG_MOUNT 43bool 'mount' CONFIG_MOUNT
44if [ "$CONFIG_MOUNT" = "y" ]; then 44if [ "$CONFIG_MOUNT" = "y" ]; then
45 bool ' Support mounting nfs file systems' CONFIG_NFSMOUNT 45 bool ' Support mounting nfs file systems' CONFIG_NFSMOUNT
46 bool ' Use devmtab instead of /proc (needs a patched kernel)' CONFIG_FEATURE_USE_DEVPS_PATCH 46 if [ "$CONFIG_FEATURE_USE_DEVPS_PATCH" = "n" ]; then
47 bool ' Use devmtab instead of /proc (needs a patched kernel)' CONFIG_FEATURE_USE_DEVPS_PATCH
48 fi
47fi 49fi
48bool 'umount' CONFIG_UMOUNT 50bool 'umount' CONFIG_UMOUNT
49if [ "$CONFIG_UMOUNT" = "y" ]; then 51if [ "$CONFIG_UMOUNT" = "y" ]; then