diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-01-24 12:16:08 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-01-24 12:16:08 +0000 |
commit | a01579d4eb6968d4707b8167cbdbfc5f219468ca (patch) | |
tree | 2f33f50b071cb981b36d49fb855fbe9f64b6aa67 /modutils | |
parent | 6cda89700e2e308fad3e20c2a06c952a8307ba95 (diff) | |
download | busybox-a01579d4eb6968d4707b8167cbdbfc5f219468ca.tar.gz |
change "bool ... if OPT" to more common "depend ... OPT"
Diffstat (limited to 'modutils')
-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 module options from the configuration file. See option below. config FEATURE_MODPROBE_MULTIPLE_OPTIONS - bool "Multiple options parsing" if NITPICK + bool "Multiple options parsing" default y - depends on MODPROBE + depends on MODPROBE && NITPICK help Allow modprobe to understand more than one option to pass to modules. @@ -107,9 +107,9 @@ config FEATURE_MODPROBE_MULTIPLE_OPTIONS on storage capacity. config FEATURE_MODPROBE_FANCY_ALIAS - bool "Fancy alias parsing" if NITPICK + bool "Fancy alias parsing" default y - depends on MODPROBE && FEATURE_2_6_MODULES + depends on MODPROBE && FEATURE_2_6_MODULES && NITPICK help Say 'y' here to enable parsing of aliases with underscore/dash mismatch between module name and file name, along with bus-specific |