diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-18 14:39:43 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-18 14:39:43 +0000 |
commit | 9ddc8d54d18f33774dc9db80a26f82bbaff5747d (patch) | |
tree | 28b640cfae5c704a771cf26d84281c4ca5bd371a /modutils/Config.in | |
parent | b6c4855f1db16af926a0616cf91e0f65b0e2a3c6 (diff) | |
download | busybox-w32-9ddc8d54d18f33774dc9db80a26f82bbaff5747d.tar.gz busybox-w32-9ddc8d54d18f33774dc9db80a26f82bbaff5747d.tar.bz2 busybox-w32-9ddc8d54d18f33774dc9db80a26f82bbaff5747d.zip |
modprobe: optional "blacklist" command support (by Natanael Copa)
is_conf_command - 56 +56
include_conf 898 917 +19
check_dep 348 356 +8
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 2/0 up/down: 83/0) Total: 83 bytes
Diffstat (limited to 'modutils/Config.in')
-rw-r--r-- | modutils/Config.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modutils/Config.in b/modutils/Config.in index b2ef51a05..c5e596d1d 100644 --- a/modutils/Config.in +++ b/modutils/Config.in | |||
@@ -117,6 +117,18 @@ config FEATURE_MODPROBE_FANCY_ALIAS | |||
117 | mismatch between module name and file name, along with bus-specific | 117 | mismatch between module name and file name, along with bus-specific |
118 | aliases (such as pci:... or usb:... aliases). | 118 | aliases (such as pci:... or usb:... aliases). |
119 | 119 | ||
120 | config FEATURE_MODPROBE_BLACKLIST | ||
121 | bool | ||
122 | prompt "Blacklist support" | ||
123 | default n | ||
124 | depends on MODPROBE && FEATURE_2_6_MODULES | ||
125 | help | ||
126 | Say 'y' here to enable support for the 'blacklist' command in | ||
127 | modprobe.conf. This prevents the alias resolver to resolve | ||
128 | blacklisted modules. This is useful if you want to prevent your | ||
129 | hardware autodetection scripts to load modules like evdev, frame | ||
130 | buffer drivers etc. | ||
131 | |||
120 | comment "Options common to multiple modutils" | 132 | comment "Options common to multiple modutils" |
121 | depends on INSMOD || RMMOD || MODPROBE || LSMOD | 133 | depends on INSMOD || RMMOD || MODPROBE || LSMOD |
122 | 134 | ||