kconfig.txt 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. This file contains some assistance for using "make *config".
  2. Use "make help" to list all of the possible configuration targets.
  3. The xconfig ('qconf'), menuconfig ('mconf'), and nconfig ('nconf')
  4. programs also have embedded help text. Be sure to check that for
  5. navigation, search, and other general help text.
  6. ======================================================================
  7. General
  8. --------------------------------------------------
  9. New kernel releases often introduce new config symbols. Often more
  10. important, new kernel releases may rename config symbols. When
  11. this happens, using a previously working .config file and running
  12. "make oldconfig" won't necessarily produce a working new kernel
  13. for you, so you may find that you need to see what NEW kernel
  14. symbols have been introduced.
  15. To see a list of new config symbols, use
  16. cp user/some/old.config .config
  17. make listnewconfig
  18. and the config program will list any new symbols, one per line.
  19. Alternatively, you can use the brute force method:
  20. make oldconfig
  21. scripts/diffconfig .config.old .config | less
  22. ______________________________________________________________________
  23. Environment variables for '*config'
  24. KCONFIG_CONFIG
  25. --------------------------------------------------
  26. This environment variable can be used to specify a default kernel config
  27. file name to override the default name of ".config".
  28. KCONFIG_OVERWRITECONFIG
  29. --------------------------------------------------
  30. If you set KCONFIG_OVERWRITECONFIG in the environment, Kconfig will not
  31. break symlinks when .config is a symlink to somewhere else.
  32. CONFIG_
  33. --------------------------------------------------
  34. If you set CONFIG_ in the environment, Kconfig will prefix all symbols
  35. with its value when saving the configuration, instead of using the default,
  36. "CONFIG_".
  37. ______________________________________________________________________
  38. Environment variables for '{allyes/allmod/allno/rand}config'
  39. KCONFIG_ALLCONFIG
  40. --------------------------------------------------
  41. (partially based on lkml email from/by Rob Landley, re: miniconfig)
  42. --------------------------------------------------
  43. The allyesconfig/allmodconfig/allnoconfig/randconfig variants can also
  44. use the environment variable KCONFIG_ALLCONFIG as a flag or a filename
  45. that contains config symbols that the user requires to be set to a
  46. specific value. If KCONFIG_ALLCONFIG is used without a filename where
  47. KCONFIG_ALLCONFIG == "" or KCONFIG_ALLCONFIG == "1", "make *config"
  48. checks for a file named "all{yes/mod/no/def/random}.config"
  49. (corresponding to the *config command that was used) for symbol values
  50. that are to be forced. If this file is not found, it checks for a
  51. file named "all.config" to contain forced values.
  52. This enables you to create "miniature" config (miniconfig) or custom
  53. config files containing just the config symbols that you are interested
  54. in. Then the kernel config system generates the full .config file,
  55. including symbols of your miniconfig file.
  56. This 'KCONFIG_ALLCONFIG' file is a config file which contains
  57. (usually a subset of all) preset config symbols. These variable
  58. settings are still subject to normal dependency checks.
  59. Examples:
  60. KCONFIG_ALLCONFIG=custom-notebook.config make allnoconfig
  61. or
  62. KCONFIG_ALLCONFIG=mini.config make allnoconfig
  63. or
  64. make KCONFIG_ALLCONFIG=mini.config allnoconfig
  65. These examples will disable most options (allnoconfig) but enable or
  66. disable the options that are explicitly listed in the specified
  67. mini-config files.
  68. ______________________________________________________________________
  69. Environment variables for 'randconfig'
  70. KCONFIG_SEED
  71. --------------------------------------------------
  72. You can set this to the integer value used to seed the RNG, if you want
  73. to somehow debug the behaviour of the kconfig parser/frontends.
  74. If not set, the current time will be used.
  75. KCONFIG_PROBABILITY
  76. --------------------------------------------------
  77. This variable can be used to skew the probabilities. This variable can
  78. be unset or empty, or set to three different formats:
  79. KCONFIG_PROBABILITY y:n split y:m:n split
  80. -----------------------------------------------------------------
  81. unset or empty 50 : 50 33 : 33 : 34
  82. N N : 100-N N/2 : N/2 : 100-N
  83. [1] N:M N+M : 100-(N+M) N : M : 100-(N+M)
  84. [2] N:M:L N : 100-N M : L : 100-(M+L)
  85. where N, M and L are integers (in base 10) in the range [0,100], and so
  86. that:
  87. [1] N+M is in the range [0,100]
  88. [2] M+L is in the range [0,100]
  89. Examples:
  90. KCONFIG_PROBABILITY=10
  91. 10% of booleans will be set to 'y', 90% to 'n'
  92. 5% of tristates will be set to 'y', 5% to 'm', 90% to 'n'
  93. KCONFIG_PROBABILITY=15:25
  94. 40% of booleans will be set to 'y', 60% to 'n'
  95. 15% of tristates will be set to 'y', 25% to 'm', 60% to 'n'
  96. KCONFIG_PROBABILITY=10:15:15
  97. 10% of booleans will be set to 'y', 90% to 'n'
  98. 15% of tristates will be set to 'y', 15% to 'm', 70% to 'n'
  99. ______________________________________________________________________
  100. Environment variables for 'syncconfig'
  101. KCONFIG_NOSILENTUPDATE
  102. --------------------------------------------------
  103. If this variable has a non-blank value, it prevents silent kernel
  104. config updates (requires explicit updates).
  105. KCONFIG_AUTOCONFIG
  106. --------------------------------------------------
  107. This environment variable can be set to specify the path & name of the
  108. "auto.conf" file. Its default value is "include/config/auto.conf".
  109. KCONFIG_TRISTATE
  110. --------------------------------------------------
  111. This environment variable can be set to specify the path & name of the
  112. "tristate.conf" file. Its default value is "include/config/tristate.conf".
  113. KCONFIG_AUTOHEADER
  114. --------------------------------------------------
  115. This environment variable can be set to specify the path & name of the
  116. "autoconf.h" (header) file.
  117. Its default value is "include/generated/autoconf.h".
  118. ======================================================================
  119. menuconfig
  120. --------------------------------------------------
  121. SEARCHING for CONFIG symbols
  122. Searching in menuconfig:
  123. The Search function searches for kernel configuration symbol
  124. names, so you have to know something close to what you are
  125. looking for.
  126. Example:
  127. /hotplug
  128. This lists all config symbols that contain "hotplug",
  129. e.g., HOTPLUG_CPU, MEMORY_HOTPLUG.
  130. For search help, enter / followed by TAB-TAB (to highlight
  131. <Help>) and Enter. This will tell you that you can also use
  132. regular expressions (regexes) in the search string, so if you
  133. are not interested in MEMORY_HOTPLUG, you could try
  134. /^hotplug
  135. When searching, symbols are sorted thus:
  136. - first, exact matches, sorted alphabetically (an exact match
  137. is when the search matches the complete symbol name);
  138. - then, other matches, sorted alphabetically.
  139. For example: ^ATH.K matches:
  140. ATH5K ATH9K ATH5K_AHB ATH5K_DEBUG [...] ATH6KL ATH6KL_DEBUG
  141. [...] ATH9K_AHB ATH9K_BTCOEX_SUPPORT ATH9K_COMMON [...]
  142. of which only ATH5K and ATH9K match exactly and so are sorted
  143. first (and in alphabetical order), then come all other symbols,
  144. sorted in alphabetical order.
  145. ______________________________________________________________________
  146. User interface options for 'menuconfig'
  147. MENUCONFIG_COLOR
  148. --------------------------------------------------
  149. It is possible to select different color themes using the variable
  150. MENUCONFIG_COLOR. To select a theme use:
  151. make MENUCONFIG_COLOR=<theme> menuconfig
  152. Available themes are:
  153. mono => selects colors suitable for monochrome displays
  154. blackbg => selects a color scheme with black background
  155. classic => theme with blue background. The classic look
  156. bluetitle => a LCD friendly version of classic. (default)
  157. MENUCONFIG_MODE
  158. --------------------------------------------------
  159. This mode shows all sub-menus in one large tree.
  160. Example:
  161. make MENUCONFIG_MODE=single_menu menuconfig
  162. ======================================================================
  163. nconfig
  164. --------------------------------------------------
  165. nconfig is an alternate text-based configurator. It lists function
  166. keys across the bottom of the terminal (window) that execute commands.
  167. You can also just use the corresponding numeric key to execute the
  168. commands unless you are in a data entry window. E.g., instead of F6
  169. for Save, you can just press 6.
  170. Use F1 for Global help or F3 for the Short help menu.
  171. Searching in nconfig:
  172. You can search either in the menu entry "prompt" strings
  173. or in the configuration symbols.
  174. Use / to begin a search through the menu entries. This does
  175. not support regular expressions. Use <Down> or <Up> for
  176. Next hit and Previous hit, respectively. Use <Esc> to
  177. terminate the search mode.
  178. F8 (SymSearch) searches the configuration symbols for the
  179. given string or regular expression (regex).
  180. NCONFIG_MODE
  181. --------------------------------------------------
  182. This mode shows all sub-menus in one large tree.
  183. Example:
  184. make NCONFIG_MODE=single_menu nconfig
  185. ======================================================================
  186. xconfig
  187. --------------------------------------------------
  188. Searching in xconfig:
  189. The Search function searches for kernel configuration symbol
  190. names, so you have to know something close to what you are
  191. looking for.
  192. Example:
  193. Ctrl-F hotplug
  194. or
  195. Menu: File, Search, hotplug
  196. lists all config symbol entries that contain "hotplug" in
  197. the symbol name. In this Search dialog, you may change the
  198. config setting for any of the entries that are not grayed out.
  199. You can also enter a different search string without having
  200. to return to the main menu.
  201. ======================================================================
  202. gconfig
  203. --------------------------------------------------
  204. Searching in gconfig:
  205. There is no search command in gconfig. However, gconfig does
  206. have several different viewing choices, modes, and options.
  207. ###