2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
6 menu "Linux Module Utilities"
8 config BUSYBOX_CONFIG_INSMOD
12 insmod is used to load specified modules in the running kernel.
14 config BUSYBOX_CONFIG_FEATURE_2_4_MODULES
15 bool " Support version 2.2.x to 2.4.x Linux kernels"
17 depends on BUSYBOX_CONFIG_INSMOD
19 Support module loading for 2.2.x and 2.4.x Linux kernels.
21 config BUSYBOX_CONFIG_FEATURE_2_6_MODULES
22 bool " Support version 2.6.x Linux kernels"
24 depends on BUSYBOX_CONFIG_INSMOD
26 Support module loading for newer 2.6.x Linux kernels.
28 config BUSYBOX_CONFIG_FEATURE_INSMOD_VERSION_CHECKING
29 bool " Module version checking"
31 depends on BUSYBOX_CONFIG_INSMOD && BUSYBOX_CONFIG_FEATURE_2_4_MODULES
33 Support checking of versions for modules. This is used to
34 ensure that the kernel and module are made for each other.
36 config BUSYBOX_CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
37 bool " Add module symbols to kernel symbol table"
39 depends on BUSYBOX_CONFIG_INSMOD && BUSYBOX_CONFIG_FEATURE_2_4_MODULES
41 By adding module symbols to the kernel symbol table, Oops messages
42 occuring within kernel modules can be properly debugged. By enabling
43 this feature, module symbols will always be added to the kernel symbol
44 table for properly debugging support. If you are not interested in
45 Oops messages from kernel modules, say N.
47 config BUSYBOX_CONFIG_FEATURE_INSMOD_LOADINKMEM
48 bool " In kernel memory optimization (uClinux only)"
50 depends on BUSYBOX_CONFIG_INSMOD && BUSYBOX_CONFIG_FEATURE_2_4_MODULES
52 This is a special uClinux only memory optimization that lets insmod
53 load the specified kernel module directly into kernel space, reducing
54 memory usage by preventing the need for two copies of the module
55 being loaded into memory.
57 config BUSYBOX_CONFIG_FEATURE_INSMOD_LOAD_MAP
58 bool " Enable load map (-m) option"
60 depends on BUSYBOX_CONFIG_INSMOD && BUSYBOX_CONFIG_FEATURE_2_4_MODULES
62 Enabling this, one would be able to get a load map
63 output on stdout. This makes kernel module debugging
65 If you don't plan to debug kernel modules, you
66 don't need this option.
68 config BUSYBOX_CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL
69 bool " Symbols in load map"
71 depends on BUSYBOX_CONFIG_FEATURE_INSMOD_LOAD_MAP
73 Without this option, -m will only output section
74 load map. With this option, -m will also output
77 config BUSYBOX_CONFIG_LSMOD
81 lsmod is used to display a list of loaded modules.
83 config BUSYBOX_CONFIG_FEATURE_QUERY_MODULE_INTERFACE
86 depends on BUSYBOX_CONFIG_FEATURE_2_4_MODULES && !CONFIG_FEATURE_2_6_MODULES
88 config BUSYBOX_CONFIG_MODPROBE
92 Handle the loading of modules, and their dependancies on a high
95 config BUSYBOX_CONFIG_RMMOD
99 rmmod is used to unload specified modules from the kernel.
101 config BUSYBOX_CONFIG_FEATURE_CHECK_TAINTED_MODULE
102 bool "Support tainted module checking with new kernels"
104 depends on BUSYBOX_CONFIG_INSMOD || BUSYBOX_CONFIG_LSMOD
106 Support checking for tainted modules. These are usually binary
107 only modules that will make the linux-kernel list ignore your
109 This option is required to support GPLONLY modules.