blob: a635656e58844325b6addcaf8892fec27349b585 [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
Glenn L McGrath1b6dfa72003-03-30 13:57:26 +00006menu "Linux Module Utilities"
Eric Andersenc9f20d92002-12-05 08:41:41 +00007
8config CONFIG_INSMOD
9 bool "insmod"
10 default n
11 help
Eric Andersene5642112003-07-14 19:37:08 +000012 insmod is used to load specified modules in the running kernel.
Eric Andersenc9f20d92002-12-05 08:41:41 +000013
14config CONFIG_FEATURE_OLD_MODULE_INTERFACE
15 bool " Support older (pre 2.1) Linux kernels"
16 default n
17 depends on CONFIG_INSMOD
18 help
19 Please submit a patch to add help text for this item.
20
21if CONFIG_INSMOD && !CONFIG_FEATURE_OLD_MODULE_INTERFACE
22 config CONFIG_FEATURE_NEW_MODULE_INTERFACE
23 default y
24 comment " Support new (post 2.1) Linux kernels (Forced enabled)"
25endif
26
27if CONFIG_FEATURE_OLD_MODULE_INTERFACE
28config CONFIG_FEATURE_NEW_MODULE_INTERFACE
29 bool " Support new (post 2.1) Linux kernels"
30 default y
31 depends on CONFIG_INSMOD
32 help
33 Please submit a patch to add help text for this item.
34endif
35
36config CONFIG_FEATURE_INSMOD_VERSION_CHECKING
37 bool " Module version checking"
38 default n
39 depends on CONFIG_INSMOD
40 help
41 Please submit a patch to add help text for this item.
42
Eric Andersen889dd202003-01-23 04:48:34 +000043config CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
44 bool " Add module symbols to kernel symbol table"
45 default n
46 depends on CONFIG_INSMOD
47 help
48 By adding module symbols to the kernel symbol table, Oops messages
49 occuring within kernel modules can be properly debugged. By enabling
50 this feature, module symbols will always be added to the kernel symbol
51 table for properly debugging support. If you are not interested in
52 Oops messages from kernel modules, say N.
53
Eric Andersenc9f20d92002-12-05 08:41:41 +000054config CONFIG_FEATURE_INSMOD_LOADINKMEM
55 bool " In kernel memory optimization (uClinux only)"
56 default n
57 depends on CONFIG_INSMOD
58 help
59 Please submit a patch to add help text for this item.
60
Eric Andersenbe65c352003-01-23 04:57:35 +000061config CONFIG_FEATURE_INSMOD_LOAD_MAP
62 bool " Enable load map (-m) option"
63 default n
64 depends on CONFIG_INSMOD
65 help
66 Enabling this, one would be able to get a load map
67 output on stdout. This makes kernel module debugging
68 easier.
69 If you don't plan to debug kernel modules, you
70 don't need this option.
71
72config CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL
73 bool " Symbols in load map"
74 default y
75 depends on CONFIG_FEATURE_INSMOD_LOAD_MAP
76 help
77 Without this option, -m will only output section
78 load map.
79 With this option, -m will also output symbols
80 load map.
81
Eric Andersenc9f20d92002-12-05 08:41:41 +000082config CONFIG_LSMOD
83 bool "lsmod"
84 default n
85 help
Eric Andersen65e20a32003-07-05 07:52:35 +000086 lsmod is used to display a list of loaded modules.
Eric Andersenc9f20d92002-12-05 08:41:41 +000087
88config CONFIG_FEATURE_QUERY_MODULE_INTERFACE
89 bool " Support lsmod query_module interface (add 638 bytes)"
90 default y
91 depends on CONFIG_LSMOD && CONFIG_FEATURE_NEW_MODULE_INTERFACE
92 help
93 Please submit a patch to add help text for this item.
94
95config CONFIG_MODPROBE
96 bool "modprobe"
97 default n
98 help
Eric Andersene5642112003-07-14 19:37:08 +000099 Handle the loading of modules, and their dependancies on a high
100 level.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000101
102config CONFIG_RMMOD
103 bool "rmmod"
104 default n
105 help
Eric Andersen65e20a32003-07-05 07:52:35 +0000106 rmmod is used to unload specified modules from the kernel.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000107
108config CONFIG_FEATURE_CHECK_TAINTED_MODULE
109 bool "Support tainted module checking with new kernels"
110 default y
111 depends on CONFIG_INSMOD || CONFIG_LSMOD
112 help
113 Please submit a patch to add help text for this item.
114
115
116endmenu
117