kconfig-language.txt 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. Linux 2.6.12 Documentation/kbuild/kconfig-language.txt
  2. Introduction
  3. ------------
  4. The configuration database is collection of configuration options
  5. organized in a tree structure:
  6. +- Code maturity level options
  7. | +- Prompt for development and/or incomplete code/drivers
  8. +- General setup
  9. | +- Networking support
  10. | +- System V IPC
  11. | +- BSD Process Accounting
  12. | +- Sysctl support
  13. +- Loadable module support
  14. | +- Enable loadable module support
  15. | +- Set version information on all module symbols
  16. | +- Kernel module loader
  17. +- ...
  18. Every entry has its own dependencies. These dependencies are used
  19. to determine the visibility of an entry. Any child entry is only
  20. visible if its parent entry is also visible.
  21. Menu entries
  22. ------------
  23. Most entries define a config option, all other entries help to organize
  24. them. A single configuration option is defined like this:
  25. config MODVERSIONS
  26. bool "Set version information on all module symbols"
  27. depends MODULES
  28. help
  29. Usually, modules have to be recompiled whenever you switch to a new
  30. kernel. ...
  31. Every line starts with a key word and can be followed by multiple
  32. arguments. "config" starts a new config entry. The following lines
  33. define attributes for this config option. Attributes can be the type of
  34. the config option, input prompt, dependencies, help text and default
  35. values. A config option can be defined multiple times with the same
  36. name, but every definition can have only a single input prompt and the
  37. type must not conflict.
  38. Menu attributes
  39. ---------------
  40. A menu entry can have a number of attributes. Not all of them are
  41. applicable everywhere (see syntax).
  42. - type definition: "bool"/"tristate"/"string"/"hex"/"int"
  43. Every config option must have a type. There are only two basic types:
  44. tristate and string, the other types are based on these two. The type
  45. definition optionally accepts an input prompt, so these two examples
  46. are equivalent:
  47. bool "Networking support"
  48. and
  49. bool
  50. prompt "Networking support"
  51. - input prompt: "prompt" <prompt> ["if" <expr>]
  52. Every menu entry can have at most one prompt, which is used to display
  53. to the user. Optionally dependencies only for this prompt can be added
  54. with "if".
  55. - default value: "default" <expr> ["if" <expr>]
  56. A config option can have any number of default values. If multiple
  57. default values are visible, only the first defined one is active.
  58. Default values are not limited to the menu entry, where they are
  59. defined, this means the default can be defined somewhere else or be
  60. overridden by an earlier definition.
  61. The default value is only assigned to the config symbol if no other
  62. value was set by the user (via the input prompt above). If an input
  63. prompt is visible the default value is presented to the user and can
  64. be overridden by him.
  65. Optionally dependencies only for this default value can be added with
  66. "if".
  67. - dependencies: "depends on"/"requires" <expr>
  68. This defines a dependency for this menu entry. If multiple
  69. dependencies are defined they are connected with '&&'. Dependencies
  70. are applied to all other options within this menu entry (which also
  71. accept an "if" expression), so these two examples are equivalent:
  72. bool "foo" if BAR
  73. default y if BAR
  74. and
  75. depends on BAR
  76. bool "foo"
  77. default y
  78. - reverse dependencies: "select" <symbol> ["if" <expr>]
  79. While normal dependencies reduce the upper limit of a symbol (see
  80. below), reverse dependencies can be used to force a lower limit of
  81. another symbol. The value of the current menu symbol is used as the
  82. minimal value <symbol> can be set to. If <symbol> is selected multiple
  83. times, the limit is set to the largest selection.
  84. Reverse dependencies can only be used with boolean or tristate
  85. symbols.
  86. - numerical ranges: "range" <symbol> <symbol> ["if" <expr>]
  87. This allows to limit the range of possible input values for int
  88. and hex symbols. The user can only input a value which is larger than
  89. or equal to the first symbol and smaller than or equal to the second
  90. symbol.
  91. - help text: "help" or "---help---"
  92. This defines a help text. The end of the help text is determined by
  93. the indentation level, this means it ends at the first line which has
  94. a smaller indentation than the first line of the help text.
  95. "---help---" and "help" do not differ in behaviour, "---help---" is
  96. used to help visually seperate configuration logic from help within
  97. the file as an aid to developers.
  98. Menu dependencies
  99. -----------------
  100. Dependencies define the visibility of a menu entry and can also reduce
  101. the input range of tristate symbols. The tristate logic used in the
  102. expressions uses one more state than normal boolean logic to express the
  103. module state. Dependency expressions have the following syntax:
  104. <expr> ::= <symbol> (1)
  105. <symbol> '=' <symbol> (2)
  106. <symbol> '!=' <symbol> (3)
  107. '(' <expr> ')' (4)
  108. '!' <expr> (5)
  109. <expr> '&&' <expr> (6)
  110. <expr> '||' <expr> (7)
  111. Expressions are listed in decreasing order of precedence.
  112. (1) Convert the symbol into an expression. Boolean and tristate symbols
  113. are simply converted into the respective expression values. All
  114. other symbol types result in 'n'.
  115. (2) If the values of both symbols are equal, it returns 'y',
  116. otherwise 'n'.
  117. (3) If the values of both symbols are equal, it returns 'n',
  118. otherwise 'y'.
  119. (4) Returns the value of the expression. Used to override precedence.
  120. (5) Returns the result of (2-/expr/).
  121. (6) Returns the result of min(/expr/, /expr/).
  122. (7) Returns the result of max(/expr/, /expr/).
  123. An expression can have a value of 'n', 'm' or 'y' (or 0, 1, 2
  124. respectively for calculations). A menu entry becomes visible when it's
  125. expression evaluates to 'm' or 'y'.
  126. There are two types of symbols: constant and nonconstant symbols.
  127. Nonconstant symbols are the most common ones and are defined with the
  128. 'config' statement. Nonconstant symbols consist entirely of alphanumeric
  129. characters or underscores.
  130. Constant symbols are only part of expressions. Constant symbols are
  131. always surrounded by single or double quotes. Within the quote any
  132. other character is allowed and the quotes can be escaped using '\'.
  133. Menu structure
  134. --------------
  135. The position of a menu entry in the tree is determined in two ways. First
  136. it can be specified explicitly:
  137. menu "Network device support"
  138. depends NET
  139. config NETDEVICES
  140. ...
  141. endmenu
  142. All entries within the "menu" ... "endmenu" block become a submenu of
  143. "Network device support". All subentries inherit the dependencies from
  144. the menu entry, e.g. this means the dependency "NET" is added to the
  145. dependency list of the config option NETDEVICES.
  146. The other way to generate the menu structure is done by analyzing the
  147. dependencies. If a menu entry somehow depends on the previous entry, it
  148. can be made a submenu of it. First, the previous (parent) symbol must
  149. be part of the dependency list and then one of these two conditions
  150. must be true:
  151. - the child entry must become invisible, if the parent is set to 'n'
  152. - the child entry must only be visible, if the parent is visible
  153. config MODULES
  154. bool "Enable loadable module support"
  155. config MODVERSIONS
  156. bool "Set version information on all module symbols"
  157. depends MODULES
  158. comment "module support disabled"
  159. depends !MODULES
  160. MODVERSIONS directly depends on MODULES, this means it's only visible if
  161. MODULES is different from 'n'. The comment on the other hand is always
  162. visible when MODULES is visible (the (empty) dependency of MODULES is
  163. also part of the comment dependencies).
  164. Kconfig syntax
  165. --------------
  166. The configuration file describes a series of menu entries, where every
  167. line starts with a keyword (except help texts). The following keywords
  168. end a menu entry:
  169. - config
  170. - menuconfig
  171. - choice/endchoice
  172. - comment
  173. - menu/endmenu
  174. - if/endif
  175. - source
  176. The first five also start the definition of a menu entry.
  177. config:
  178. "config" <symbol>
  179. <config options>
  180. This defines a config symbol <symbol> and accepts any of above
  181. attributes as options.
  182. menuconfig:
  183. "menuconfig" <symbol>
  184. <config options>
  185. This is similiar to the simple config entry above, but it also gives a
  186. hint to front ends, that all suboptions should be displayed as a
  187. separate list of options.
  188. choices:
  189. "choice"
  190. <choice options>
  191. <choice block>
  192. "endchoice"
  193. This defines a choice group and accepts any of above attributes as
  194. options. A choice can only be of type bool or tristate, while a boolean
  195. choice only allows a single config entry to be selected, a tristate
  196. choice also allows any number of config entries to be set to 'm'. This
  197. can be used if multiple drivers for a single hardware exists and only a
  198. single driver can be compiled/loaded into the kernel, but all drivers
  199. can be compiled as modules.
  200. A choice accepts another option "optional", which allows to set the
  201. choice to 'n' and no entry needs to be selected.
  202. comment:
  203. "comment" <prompt>
  204. <comment options>
  205. This defines a comment which is displayed to the user during the
  206. configuration process and is also echoed to the output files. The only
  207. possible options are dependencies.
  208. menu:
  209. "menu" <prompt>
  210. <menu options>
  211. <menu block>
  212. "endmenu"
  213. This defines a menu block, see "Menu structure" above for more
  214. information. The only possible options are dependencies.
  215. if:
  216. "if" <expr>
  217. <if block>
  218. "endif"
  219. This defines an if block. The dependency expression <expr> is appended
  220. to all enclosed menu entries.
  221. source:
  222. "source" <prompt>
  223. This reads the specified configuration file. This file is always parsed.