Kconfig-language.txt 8.3 KB

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