diff options
author | Rob Landley | 2005-11-15 00:08:29 +0000 |
---|---|---|
committer | Rob Landley | 2005-11-15 00:08:29 +0000 |
commit | 79e1cab0d16468b114ea93e53eb63b76b5d39b62 (patch) | |
tree | 01661313c86e843b107b40aa78a3cfceed9c48c5 /modutils/Config.in | |
parent | 9033453c1849df49d2be39bca92c5b7cdb3234e3 (diff) | |
download | busybox-79e1cab0d16468b114ea93e53eb63b76b5d39b62.zip busybox-79e1cab0d16468b114ea93e53eb63b76b5d39b62.tar.gz |
Yann Morin's modprobe multiple options patch. There's more work to be done,
but let's ship 1.1 first...
Diffstat (limited to 'modutils/Config.in')
-rw-r--r-- | modutils/Config.in | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/modutils/Config.in b/modutils/Config.in index 986b65c..bf19a3e 100644 --- a/modutils/Config.in +++ b/modutils/Config.in @@ -100,6 +100,25 @@ config CONFIG_MODPROBE Handle the loading of modules, and their dependancies on a high level. + Note that, in the state it is, modprobe can pass only one option + to the modules it loads. See option below. + +config CONFIG_MODPROBE_MULTIPLE_OPTIONS + bool "Multiple options parsing" + default y + depends on CONFIG_MODPROBE + help + Allow modprobe to understand more than one option to pass to + modules. + + This is a WIP, while waiting for a common argument parsing + common amongst all BB applets (shell, modprobe, etc...) and + adds around 600 bytes on x86, 700 bytes on ARM. The code is + biggish and uggly, but just works. + + Saying Y here is not a bad idea if you're not that short + on storage capacity. + config CONFIG_RMMOD bool "rmmod" default n |