summaryrefslogtreecommitdiff
path: root/busybox-modutils.kconfig
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2010-11-20 23:08:10 +0100
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2010-11-20 23:08:10 +0100
commitf7f6ce0ea9f513e6183f6e7630e0fd2d82f45c1b (patch)
tree5182a501c5700bb9b0a64c45033d8686f1868c14 /busybox-modutils.kconfig
parent1caedd37842349f5717f565c07d340d3e2995e88 (diff)
downloadembtk-busybox-kconfigs-f7f6ce0ea9f513e6183f6e7630e0fd2d82f45c1b.tar.gz
embtk-busybox-kconfigs-f7f6ce0ea9f513e6183f6e7630e0fd2d82f45c1b.tar.bz2
embtk-busybox-kconfigs-f7f6ce0ea9f513e6183f6e7630e0fd2d82f45c1b.tar.xz
Adapt kconfig symbols for embtk
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'busybox-modutils.kconfig')
-rw-r--r--busybox-modutils.kconfig66
1 files changed, 33 insertions, 33 deletions
diff --git a/busybox-modutils.kconfig b/busybox-modutils.kconfig
index 5537945..621b131 100644
--- a/busybox-modutils.kconfig
+++ b/busybox-modutils.kconfig
@@ -5,21 +5,21 @@
menu "Linux Module Utilities"
-config DEFAULT_MODULES_DIR
+config KEMBTK_BUSYB_DEFAULT_MODULES_DIR
string "Default directory containing modules"
default "/lib/modules"
help
Directory that contains kernel modules.
Defaults to "/lib/modules"
-config DEFAULT_DEPMOD_FILE
+config KEMBTK_BUSYB_DEFAULT_DEPMOD_FILE
string "Default name of modules.dep"
default "modules.dep"
help
Filename that contains kernel modules dependencies.
Defaults to "modules.dep"
-config MODPROBE_SMALL
+config KEMBTK_BUSYB_MODPROBE_SMALL
bool "Simplified modutils"
help
Simplified modutils.
@@ -51,47 +51,47 @@ config MODPROBE_SMALL
As of 2008-07, this code is experimental. It is 14kb smaller
than "non-small" modutils.
-config FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE
+config KEMBTK_BUSYB_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE
bool "Accept module options on modprobe command line"
- depends on MODPROBE_SMALL
+ depends on KEMBTK_BUSYB_MODPROBE_SMALL
help
Allow insmod and modprobe take module options from command line.
N.B. Very bloaty.
-config FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED
+config KEMBTK_BUSYB_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED
bool "Skip loading of already loaded modules"
- depends on MODPROBE_SMALL
+ depends on KEMBTK_BUSYB_MODPROBE_SMALL
help
Check if the module is already loaded.
N.B. It's racy.
-config INSMOD
+config KEMBTK_BUSYB_INSMOD
bool "insmod"
depends on !MODPROBE_SMALL
help
insmod is used to load specified modules in the running kernel.
-config RMMOD
+config KEMBTK_BUSYB_RMMOD
bool "rmmod"
depends on !MODPROBE_SMALL
help
rmmod is used to unload specified modules from the kernel.
-config LSMOD
+config KEMBTK_BUSYB_LSMOD
bool "lsmod"
depends on !MODPROBE_SMALL
help
lsmod is used to display a list of loaded modules.
-config FEATURE_LSMOD_PRETTY_2_6_OUTPUT
+config KEMBTK_BUSYB_FEATURE_LSMOD_PRETTY_2_6_OUTPUT
bool "Pretty output"
- depends on LSMOD
+ depends on KEMBTK_BUSYB_LSMOD
help
This option makes output format of lsmod adjusted to
the format of module-init-tools for Linux kernel 2.6.
Increases size somewhat.
-config MODPROBE
+config KEMBTK_BUSYB_MODPROBE
bool "modprobe"
depends on !MODPROBE_SMALL
help
@@ -101,10 +101,10 @@ config MODPROBE
Note that in the state, modprobe does not understand multiple
module options from the configuration file. See option below.
-config FEATURE_MODPROBE_BLACKLIST
+config KEMBTK_BUSYB_FEATURE_MODPROBE_BLACKLIST
bool
prompt "Blacklist support"
- depends on MODPROBE
+ depends on KEMBTK_BUSYB_MODPROBE
help
Say 'y' here to enable support for the 'blacklist' command in
modprobe.conf. This prevents the alias resolver to resolve
@@ -112,7 +112,7 @@ config FEATURE_MODPROBE_BLACKLIST
hardware autodetection scripts to load modules like evdev, frame
buffer drivers etc.
-config DEPMOD
+config KEMBTK_BUSYB_DEPMOD
bool "depmod"
depends on !MODPROBE_SMALL
help
@@ -122,24 +122,24 @@ config DEPMOD
comment "Options common to multiple modutils"
-config FEATURE_2_4_MODULES
+config KEMBTK_BUSYB_FEATURE_2_4_MODULES
bool "Support version 2.2/2.4 Linux kernels"
- depends on INSMOD || RMMOD || LSMOD
+ depends on KEMBTK_BUSYB_INSMOD || KEMBTK_BUSYB_RMMOD || KEMBTK_BUSYB_LSMOD
help
Support module loading for 2.2.x and 2.4.x Linux kernels.
This increases size considerably. Say N unless you plan
to run ancient kernels.
-config FEATURE_INSMOD_VERSION_CHECKING
+config KEMBTK_BUSYB_FEATURE_INSMOD_VERSION_CHECKING
bool "Enable module version checking"
- depends on FEATURE_2_4_MODULES && (INSMOD || MODPROBE)
+ depends on KEMBTK_BUSYB_FEATURE_2_4_MODULES && (KEMBTK_BUSYB_INSMOD || KEMBTK_BUSYB_MODPROBE)
help
Support checking of versions for modules. This is used to
ensure that the kernel and module are made for each other.
-config FEATURE_INSMOD_KSYMOOPS_SYMBOLS
+config KEMBTK_BUSYB_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
bool "Add module symbols to kernel symbol table"
- depends on FEATURE_2_4_MODULES && (INSMOD || MODPROBE)
+ depends on KEMBTK_BUSYB_FEATURE_2_4_MODULES && (KEMBTK_BUSYB_INSMOD || KEMBTK_BUSYB_MODPROBE)
help
By adding module symbols to the kernel symbol table, Oops messages
occuring within kernel modules can be properly debugged. By enabling
@@ -147,18 +147,18 @@ config FEATURE_INSMOD_KSYMOOPS_SYMBOLS
table for properly debugging support. If you are not interested in
Oops messages from kernel modules, say N.
-config FEATURE_INSMOD_LOADINKMEM
+config KEMBTK_BUSYB_FEATURE_INSMOD_LOADINKMEM
bool "In kernel memory optimization (uClinux only)"
- depends on FEATURE_2_4_MODULES && (INSMOD || MODPROBE)
+ depends on KEMBTK_BUSYB_FEATURE_2_4_MODULES && (KEMBTK_BUSYB_INSMOD || KEMBTK_BUSYB_MODPROBE)
help
This is a special uClinux only memory optimization that lets insmod
load the specified kernel module directly into kernel space, reducing
memory usage by preventing the need for two copies of the module
being loaded into memory.
-config FEATURE_INSMOD_LOAD_MAP
+config KEMBTK_BUSYB_FEATURE_INSMOD_LOAD_MAP
bool "Enable insmod load map (-m) option"
- depends on FEATURE_2_4_MODULES && INSMOD
+ depends on KEMBTK_BUSYB_FEATURE_2_4_MODULES && KEMBTK_BUSYB_INSMOD
help
Enabling this, one would be able to get a load map
output on stdout. This makes kernel module debugging
@@ -166,16 +166,16 @@ config FEATURE_INSMOD_LOAD_MAP
If you don't plan to debug kernel modules, you
don't need this option.
-config FEATURE_INSMOD_LOAD_MAP_FULL
+config KEMBTK_BUSYB_FEATURE_INSMOD_LOAD_MAP_FULL
bool "Symbols in load map"
default y
- depends on FEATURE_INSMOD_LOAD_MAP && !MODPROBE_SMALL
+ depends on KEMBTK_BUSYB_FEATURE_INSMOD_LOAD_MAP && !MODPROBE_SMALL
help
Without this option, -m will only output section
load map. With this option, -m will also output
symbols load map.
-config FEATURE_CHECK_TAINTED_MODULE
+config KEMBTK_BUSYB_FEATURE_CHECK_TAINTED_MODULE
bool "Support tainted module checking with new kernels"
default y
depends on !MODPROBE_SMALL
@@ -185,10 +185,10 @@ config FEATURE_CHECK_TAINTED_MODULE
support request.
This option is required to support GPLONLY modules.
-config FEATURE_MODUTILS_ALIAS
+config KEMBTK_BUSYB_FEATURE_MODUTILS_ALIAS
bool "Support for module.aliases file"
default y
- depends on DEPMOD || MODPROBE
+ depends on KEMBTK_BUSYB_DEPMOD || KEMBTK_BUSYB_MODPROBE
help
Generate and parse modules.alias containing aliases for bus
identifiers:
@@ -201,10 +201,10 @@ config FEATURE_MODUTILS_ALIAS
Say Y if unsure.
-config FEATURE_MODUTILS_SYMBOLS
+config KEMBTK_BUSYB_FEATURE_MODUTILS_SYMBOLS
bool "Support for module.symbols file"
default y
- depends on DEPMOD || MODPROBE
+ depends on KEMBTK_BUSYB_DEPMOD || KEMBTK_BUSYB_MODPROBE
help
Generate and parse modules.symbols containing aliases for
symbol_request() kernel calls, such as: