blob: c634e393872b5feddbca0c2b2f504758c1749684 [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
6menu "Module Utilities"
7
8config CONFIG_INSMOD
9 bool "insmod"
10 default n
11 help
12 Please submit a patch to add help text for this item.
13
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
86 Please submit a patch to add help text for this item.
87
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
99 Please submit a patch to add help text for this item.
100
101config CONFIG_RMMOD
102 bool "rmmod"
103 default n
104 help
105 Please submit a patch to add help text for this item.
106
107config CONFIG_FEATURE_CHECK_TAINTED_MODULE
108 bool "Support tainted module checking with new kernels"
109 default y
110 depends on CONFIG_INSMOD || CONFIG_LSMOD
111 help
112 Please submit a patch to add help text for this item.
113
114
115endmenu
116