diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-27 10:55:34 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-27 10:55:34 +0000 |
commit | b85fb693c149e6e574b4693c3abadfb554bb18dc (patch) | |
tree | 5a02d581d4235ec8d86f8122bca0dd21f55026e9 /modutils/Config.in | |
parent | 4fec3469668faf0022d32fc195c9451523219cb2 (diff) |
- Add config option for DEFAULT_DEPMOD_FILE and DEFAULT_DEPMOD_FILE.
No obj-code changes.
Diffstat (limited to 'modutils/Config.in')
-rw-r--r-- | modutils/Config.in | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/modutils/Config.in b/modutils/Config.in index 44b1d9134..c69e1b376 100644 --- a/modutils/Config.in +++ b/modutils/Config.in @@ -136,7 +136,7 @@ config FEATURE_MODPROBE_BLACKLIST buffer drivers etc. comment "Options common to multiple modutils" - depends on INSMOD || RMMOD || MODPROBE || LSMOD + depends on INSMOD || RMMOD || MODPROBE || LSMOD || DEPMOD config FEATURE_CHECK_TAINTED_MODULE # Simulate indentation @@ -168,6 +168,23 @@ config FEATURE_2_6_MODULES help Support module loading for newer 2.6.x Linux kernels. +config DEFAULT_MODULES_DIR + # Simulate indentation + string "default directory containing modules" + default "/lib/modules" + depends on INSMOD || RMMOD || MODPROBE || DEPMOD + help + Directory that contains kernel modules. + Defaults to "/lib/modules" + +config DEFAULT_DEPMOD_FILE + # Simulate indentation + string "default name of modules.dep" + default "modules.dep" + depends on INSMOD || RMMOD || MODPROBE || DEPMOD + help + Filename that contains kernel modules dependencies. + Defaults to "modules.dep" config FEATURE_QUERY_MODULE_INTERFACE bool |