Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 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 | |
Eric Andersen | 889dd20 | 2003-01-23 04:48:34 +0000 | [diff] [blame] | 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 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 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 | |
Eric Andersen | be65c35 | 2003-01-23 04:57:35 +0000 | [diff] [blame] | 61 | config 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 | |
| 72 | config 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 Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 82 | config CONFIG_LSMOD |
| 83 | bool "lsmod" |
| 84 | default n |
| 85 | help |
| 86 | Please submit a patch to add help text for this item. |
| 87 | |
| 88 | config 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 | |
| 95 | config CONFIG_MODPROBE |
| 96 | bool "modprobe" |
| 97 | default n |
| 98 | help |
| 99 | Please submit a patch to add help text for this item. |
| 100 | |
| 101 | config CONFIG_RMMOD |
| 102 | bool "rmmod" |
| 103 | default n |
| 104 | help |
| 105 | Please submit a patch to add help text for this item. |
| 106 | |
| 107 | config 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 | |
| 115 | endmenu |
| 116 | |