Config.in 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Linux Module Utilities"
  6. config CONFIG_INSMOD
  7. bool "insmod"
  8. default n
  9. help
  10. insmod is used to load specified modules in the running kernel.
  11. config CONFIG_FEATURE_2_4_MODULES
  12. bool " Support version 2.2.x to 2.4.x Linux kernels"
  13. default y
  14. depends on CONFIG_INSMOD
  15. help
  16. Support module loading for 2.2.x and 2.4.x Linux kernels.
  17. config CONFIG_FEATURE_2_6_MODULES
  18. bool " Support version 2.6.x Linux kernels"
  19. default n
  20. depends on CONFIG_INSMOD
  21. help
  22. Support module loading for newer 2.6.x Linux kernels.
  23. config CONFIG_FEATURE_INSMOD_VERSION_CHECKING
  24. bool " Module version checking"
  25. default n
  26. depends on CONFIG_INSMOD && CONFIG_FEATURE_2_4_MODULES
  27. help
  28. Support checking of versions for modules. This is used to
  29. ensure that the kernel and module are made for each other.
  30. config CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
  31. bool " Add module symbols to kernel symbol table"
  32. default n
  33. depends on CONFIG_INSMOD && CONFIG_FEATURE_2_4_MODULES
  34. help
  35. By adding module symbols to the kernel symbol table, Oops messages
  36. occuring within kernel modules can be properly debugged. By enabling
  37. this feature, module symbols will always be added to the kernel symbol
  38. table for properly debugging support. If you are not interested in
  39. Oops messages from kernel modules, say N.
  40. config CONFIG_FEATURE_INSMOD_LOADINKMEM
  41. bool " In kernel memory optimization (uClinux only)"
  42. default n
  43. depends on CONFIG_INSMOD && CONFIG_FEATURE_2_4_MODULES
  44. help
  45. This is a special uClinux only memory optimization that lets insmod
  46. load the specified kernel module directly into kernel space, reducing
  47. memory usage by preventing the need for two copies of the module
  48. being loaded into memory.
  49. config CONFIG_FEATURE_INSMOD_LOAD_MAP
  50. bool " Enable load map (-m) option"
  51. default n
  52. depends on CONFIG_INSMOD && CONFIG_FEATURE_2_4_MODULES
  53. help
  54. Enabling this, one would be able to get a load map
  55. output on stdout. This makes kernel module debugging
  56. easier.
  57. If you don't plan to debug kernel modules, you
  58. don't need this option.
  59. config CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL
  60. bool " Symbols in load map"
  61. default y
  62. depends on CONFIG_FEATURE_INSMOD_LOAD_MAP
  63. help
  64. Without this option, -m will only output section
  65. load map. With this option, -m will also output
  66. symbols load map.
  67. config CONFIG_LSMOD
  68. bool "lsmod"
  69. default n
  70. help
  71. lsmod is used to display a list of loaded modules.
  72. config CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT
  73. bool " lsmod pretty output for 2.6.x Linux kernels "
  74. default n
  75. depends on CONFIG_LSMOD
  76. help
  77. This option makes output format of lsmod adjusted to
  78. the format of module-init-tools for Linux kernel 2.6.
  79. config CONFIG_FEATURE_QUERY_MODULE_INTERFACE
  80. bool
  81. default y
  82. depends on CONFIG_FEATURE_2_4_MODULES && !CONFIG_FEATURE_2_6_MODULES
  83. config CONFIG_MODPROBE
  84. bool "modprobe"
  85. default n
  86. help
  87. Handle the loading of modules, and their dependancies on a high
  88. level.
  89. config CONFIG_RMMOD
  90. bool "rmmod"
  91. default n
  92. help
  93. rmmod is used to unload specified modules from the kernel.
  94. config CONFIG_FEATURE_CHECK_TAINTED_MODULE
  95. bool "Support tainted module checking with new kernels"
  96. default y
  97. depends on CONFIG_INSMOD || CONFIG_LSMOD
  98. help
  99. Support checking for tainted modules. These are usually binary
  100. only modules that will make the linux-kernel list ignore your
  101. support request.
  102. This option is required to support GPLONLY modules.
  103. endmenu