aboutsummaryrefslogtreecommitdiff
path: root/modutils/Config.in
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-11-15 00:08:29 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-11-15 00:08:29 +0000
commita28a74b0627b80ef7173d089820dc9f15d20a653 (patch)
tree01661313c86e843b107b40aa78a3cfceed9c48c5 /modutils/Config.in
parent62dbc2aa2ed6168e4ecb4c4cd4b448c830ea54f6 (diff)
downloadbusybox-w32-a28a74b0627b80ef7173d089820dc9f15d20a653.tar.gz
busybox-w32-a28a74b0627b80ef7173d089820dc9f15d20a653.tar.bz2
busybox-w32-a28a74b0627b80ef7173d089820dc9f15d20a653.zip
Yann Morin's modprobe multiple options patch. There's more work to be done,
but let's ship 1.1 first... git-svn-id: svn://busybox.net/trunk/busybox@12236 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'modutils/Config.in')
-rw-r--r--modutils/Config.in19
1 files changed, 19 insertions, 0 deletions
diff --git a/modutils/Config.in b/modutils/Config.in
index 986b65c6a..bf19a3e67 100644
--- a/modutils/Config.in
+++ b/modutils/Config.in
@@ -100,6 +100,25 @@ config CONFIG_MODPROBE
100 Handle the loading of modules, and their dependancies on a high 100 Handle the loading of modules, and their dependancies on a high
101 level. 101 level.
102 102
103 Note that, in the state it is, modprobe can pass only one option
104 to the modules it loads. See option below.
105
106config CONFIG_MODPROBE_MULTIPLE_OPTIONS
107 bool "Multiple options parsing"
108 default y
109 depends on CONFIG_MODPROBE
110 help
111 Allow modprobe to understand more than one option to pass to
112 modules.
113
114 This is a WIP, while waiting for a common argument parsing
115 common amongst all BB applets (shell, modprobe, etc...) and
116 adds around 600 bytes on x86, 700 bytes on ARM. The code is
117 biggish and uggly, but just works.
118
119 Saying Y here is not a bad idea if you're not that short
120 on storage capacity.
121
103config CONFIG_RMMOD 122config CONFIG_RMMOD
104 bool "rmmod" 123 bool "rmmod"
105 default n 124 default n