aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-01-24 12:16:08 +0000
committerMike Frysinger <vapier@gentoo.org>2007-01-24 12:16:08 +0000
commita01579d4eb6968d4707b8167cbdbfc5f219468ca (patch)
tree2f33f50b071cb981b36d49fb855fbe9f64b6aa67
parent6cda89700e2e308fad3e20c2a06c952a8307ba95 (diff)
downloadbusybox-w32-a01579d4eb6968d4707b8167cbdbfc5f219468ca.tar.gz
busybox-w32-a01579d4eb6968d4707b8167cbdbfc5f219468ca.tar.bz2
busybox-w32-a01579d4eb6968d4707b8167cbdbfc5f219468ca.zip
change "bool ... if OPT" to more common "depend ... OPT"
-rw-r--r--modutils/Config.in8
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
93config FEATURE_MODPROBE_MULTIPLE_OPTIONS 93config 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
109config FEATURE_MODPROBE_FANCY_ALIAS 109config 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