Patch from Joel Vallier to add modules symbols to the kernel symbol
[oweals/busybox.git] / modutils / Config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 menu "Module Utilities"
7
8 config CONFIG_INSMOD
9         bool "insmod"
10         default n
11         help
12           Please submit a patch to add help text for this item.
13
14 config 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
21 if 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)"
25 endif
26
27 if CONFIG_FEATURE_OLD_MODULE_INTERFACE
28 config 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.
34 endif
35
36 config 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
43 config 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
54 config 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
61 config CONFIG_LSMOD
62         bool "lsmod"
63         default n
64         help
65           Please submit a patch to add help text for this item.
66
67 config CONFIG_FEATURE_QUERY_MODULE_INTERFACE
68         bool "  Support lsmod query_module interface (add 638 bytes)"
69         default y
70         depends on CONFIG_LSMOD && CONFIG_FEATURE_NEW_MODULE_INTERFACE
71         help
72           Please submit a patch to add help text for this item.
73
74 config CONFIG_MODPROBE
75         bool "modprobe"
76         default n
77         help
78           Please submit a patch to add help text for this item.
79
80 config CONFIG_RMMOD
81         bool "rmmod"
82         default n
83         help
84           Please submit a patch to add help text for this item.
85
86 config CONFIG_FEATURE_CHECK_TAINTED_MODULE
87         bool "Support tainted module checking with new kernels"
88         default y
89         depends on CONFIG_INSMOD || CONFIG_LSMOD
90         help
91           Please submit a patch to add help text for this item.
92
93
94 endmenu
95