diff options
author | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-24 12:16:08 +0000 |
---|---|---|
committer | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-24 12:16:08 +0000 |
commit | 75b1eb51bdb1dbf8ebadb54969322b069934b81c (patch) | |
tree | 2f33f50b071cb981b36d49fb855fbe9f64b6aa67 | |
parent | 279fc0f2f166e3e5f01258b73646c322877d1f4f (diff) | |
download | busybox-w32-75b1eb51bdb1dbf8ebadb54969322b069934b81c.tar.gz busybox-w32-75b1eb51bdb1dbf8ebadb54969322b069934b81c.tar.bz2 busybox-w32-75b1eb51bdb1dbf8ebadb54969322b069934b81c.zip |
change "bool ... if OPT" to more common "depend ... OPT"
git-svn-id: svn://busybox.net/trunk/busybox@17495 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | modutils/Config.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modutils/Config.in b/modutils/Config.in index fdc8c7833..f4b263b80 100644 --- a/modutils/Config.in +++ b/modutils/Config.in | |||
@@ -91,9 +91,9 @@ config MODPROBE | |||
91 | module options from the configuration file. See option below. | 91 | module options from the configuration file. See option below. |
92 | 92 | ||
93 | config FEATURE_MODPROBE_MULTIPLE_OPTIONS | 93 | config FEATURE_MODPROBE_MULTIPLE_OPTIONS |
94 | bool "Multiple options parsing" if NITPICK | 94 | bool "Multiple options parsing" |
95 | default y | 95 | default y |
96 | depends on MODPROBE | 96 | depends on MODPROBE && NITPICK |
97 | help | 97 | help |
98 | Allow modprobe to understand more than one option to pass to | 98 | Allow modprobe to understand more than one option to pass to |
99 | modules. | 99 | modules. |
@@ -107,9 +107,9 @@ config FEATURE_MODPROBE_MULTIPLE_OPTIONS | |||
107 | on storage capacity. | 107 | on storage capacity. |
108 | 108 | ||
109 | config FEATURE_MODPROBE_FANCY_ALIAS | 109 | config FEATURE_MODPROBE_FANCY_ALIAS |
110 | bool "Fancy alias parsing" if NITPICK | 110 | bool "Fancy alias parsing" |
111 | default y | 111 | default y |
112 | depends on MODPROBE && FEATURE_2_6_MODULES | 112 | depends on MODPROBE && FEATURE_2_6_MODULES && NITPICK |
113 | help | 113 | help |
114 | Say 'y' here to enable parsing of aliases with underscore/dash | 114 | Say 'y' here to enable parsing of aliases with underscore/dash |
115 | mismatch between module name and file name, along with bus-specific | 115 | mismatch between module name and file name, along with bus-specific |