kconfig.rst 9.4 KB

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