blob: a9a855f894b3fad08f7ef89fff31fd7c626819eb [file] [log] [blame]
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001===================
2Kconfig make config
3===================
4
5This file contains some assistance for using `make *config`.
Randy Dunlap2af238e2008-02-29 14:21:53 -08006
7Use "make help" to list all of the possible configuration targets.
8
Randy Dunlap452d4c82018-07-04 15:49:56 -07009The xconfig ('qconf'), menuconfig ('mconf'), and nconfig ('nconf')
10programs also have embedded help text. Be sure to check that for
11navigation, search, and other general help text.
Randy Dunlap2af238e2008-02-29 14:21:53 -080012
Randy Dunlap2af238e2008-02-29 14:21:53 -080013General
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030014-------
Randy Dunlap2af238e2008-02-29 14:21:53 -080015
16New kernel releases often introduce new config symbols. Often more
17important, new kernel releases may rename config symbols. When
18this happens, using a previously working .config file and running
19"make oldconfig" won't necessarily produce a working new kernel
20for you, so you may find that you need to see what NEW kernel
21symbols have been introduced.
22
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030023To see a list of new config symbols, use::
Randy Dunlap2af238e2008-02-29 14:21:53 -080024
25 cp user/some/old.config .config
Regid Ichira560909d2013-09-12 03:35:48 +030026 make listnewconfig
Randy Dunlap2af238e2008-02-29 14:21:53 -080027
Regid Ichira560909d2013-09-12 03:35:48 +030028and the config program will list any new symbols, one per line.
Randy Dunlap2af238e2008-02-29 14:21:53 -080029
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030030Alternatively, you can use the brute force method::
Randy Dunlap452d4c82018-07-04 15:49:56 -070031
32 make oldconfig
Javi Merino673d29f2012-03-30 13:37:02 -070033 scripts/diffconfig .config.old .config | less
Randy Dunlap2af238e2008-02-29 14:21:53 -080034
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030035----------------------------------------------------------------------
36
37Environment variables for `*config`
Markus Heidelberg98f540d2009-05-18 01:36:47 +020038
39KCONFIG_CONFIG
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030040--------------
Markus Heidelberg98f540d2009-05-18 01:36:47 +020041This environment variable can be used to specify a default kernel config
42file name to override the default name of ".config".
43
44KCONFIG_OVERWRITECONFIG
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030045-----------------------
Markus Heidelberg98f540d2009-05-18 01:36:47 +020046If you set KCONFIG_OVERWRITECONFIG in the environment, Kconfig will not
47break symlinks when .config is a symlink to somewhere else.
48
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030049`CONFIG_`
50---------
51If you set `CONFIG_` in the environment, Kconfig will prefix all symbols
Yann E. MORIN16974322012-12-19 19:17:00 +010052with its value when saving the configuration, instead of using the default,
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030053`CONFIG_`.
Yann E. MORIN16974322012-12-19 19:17:00 +010054
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030055----------------------------------------------------------------------
56
Markus Heidelberg98f540d2009-05-18 01:36:47 +020057Environment variables for '{allyes/allmod/allno/rand}config'
58
59KCONFIG_ALLCONFIG
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030060-----------------
Markus Heidelberg98f540d2009-05-18 01:36:47 +020061(partially based on lkml email from/by Rob Landley, re: miniconfig)
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030062
Markus Heidelberg98f540d2009-05-18 01:36:47 +020063--------------------------------------------------
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030064
Eric W. Biederman5efe2412012-04-26 01:51:32 -070065The allyesconfig/allmodconfig/allnoconfig/randconfig variants can also
66use the environment variable KCONFIG_ALLCONFIG as a flag or a filename
67that contains config symbols that the user requires to be set to a
68specific value. If KCONFIG_ALLCONFIG is used without a filename where
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030069KCONFIG_ALLCONFIG == "" or KCONFIG_ALLCONFIG == "1", `make *config`
Eric W. Biederman5efe2412012-04-26 01:51:32 -070070checks for a file named "all{yes/mod/no/def/random}.config"
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030071(corresponding to the `*config` command that was used) for symbol values
Eric W. Biederman5efe2412012-04-26 01:51:32 -070072that are to be forced. If this file is not found, it checks for a
73file named "all.config" to contain forced values.
Markus Heidelberg98f540d2009-05-18 01:36:47 +020074
75This enables you to create "miniature" config (miniconfig) or custom
76config files containing just the config symbols that you are interested
77in. Then the kernel config system generates the full .config file,
78including symbols of your miniconfig file.
79
80This 'KCONFIG_ALLCONFIG' file is a config file which contains
81(usually a subset of all) preset config symbols. These variable
82settings are still subject to normal dependency checks.
83
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030084Examples::
85
Markus Heidelberg98f540d2009-05-18 01:36:47 +020086 KCONFIG_ALLCONFIG=custom-notebook.config make allnoconfig
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030087
88or::
89
Markus Heidelberg98f540d2009-05-18 01:36:47 +020090 KCONFIG_ALLCONFIG=mini.config make allnoconfig
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030091
92or::
93
Markus Heidelberg98f540d2009-05-18 01:36:47 +020094 make KCONFIG_ALLCONFIG=mini.config allnoconfig
95
96These examples will disable most options (allnoconfig) but enable or
97disable the options that are explicitly listed in the specified
98mini-config files.
99
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300100----------------------------------------------------------------------
101
Yann E. MORIN0d8024c2013-04-13 22:49:13 +0200102Environment variables for 'randconfig'
103
104KCONFIG_SEED
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300105------------
Yann E. MORIN0d8024c2013-04-13 22:49:13 +0200106You can set this to the integer value used to seed the RNG, if you want
107to somehow debug the behaviour of the kconfig parser/frontends.
108If not set, the current time will be used.
109
Yann E. MORINe43956e2013-04-13 17:18:36 +0200110KCONFIG_PROBABILITY
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300111-------------------
Yann E. MORINe43956e2013-04-13 17:18:36 +0200112This variable can be used to skew the probabilities. This variable can
113be unset or empty, or set to three different formats:
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300114
115 ======================= ================== =====================
Yann E. MORINe43956e2013-04-13 17:18:36 +0200116 KCONFIG_PROBABILITY y:n split y:m:n split
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300117 ======================= ================== =====================
Yann E. MORINe43956e2013-04-13 17:18:36 +0200118 unset or empty 50 : 50 33 : 33 : 34
119 N N : 100-N N/2 : N/2 : 100-N
120 [1] N:M N+M : 100-(N+M) N : M : 100-(N+M)
121 [2] N:M:L N : 100-N M : L : 100-(M+L)
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300122 ======================= ================== =====================
Yann E. MORINe43956e2013-04-13 17:18:36 +0200123
124where N, M and L are integers (in base 10) in the range [0,100], and so
125that:
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300126
Yann E. MORINe43956e2013-04-13 17:18:36 +0200127 [1] N+M is in the range [0,100]
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300128
Yann E. MORINe43956e2013-04-13 17:18:36 +0200129 [2] M+L is in the range [0,100]
130
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300131Examples::
132
Yann E. MORINe43956e2013-04-13 17:18:36 +0200133 KCONFIG_PROBABILITY=10
134 10% of booleans will be set to 'y', 90% to 'n'
135 5% of tristates will be set to 'y', 5% to 'm', 90% to 'n'
136 KCONFIG_PROBABILITY=15:25
137 40% of booleans will be set to 'y', 60% to 'n'
138 15% of tristates will be set to 'y', 25% to 'm', 60% to 'n'
139 KCONFIG_PROBABILITY=10:15:15
140 10% of booleans will be set to 'y', 90% to 'n'
141 15% of tristates will be set to 'y', 15% to 'm', 70% to 'n'
142
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300143----------------------------------------------------------------------
144
Masahiro Yamada911a91c2018-03-01 15:34:37 +0900145Environment variables for 'syncconfig'
Markus Heidelberg98f540d2009-05-18 01:36:47 +0200146
147KCONFIG_NOSILENTUPDATE
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300148----------------------
Markus Heidelberg98f540d2009-05-18 01:36:47 +0200149If this variable has a non-blank value, it prevents silent kernel
Thomas Weber88393162010-03-16 11:47:56 +0100150config updates (requires explicit updates).
Markus Heidelberg98f540d2009-05-18 01:36:47 +0200151
152KCONFIG_AUTOCONFIG
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300153------------------
Markus Heidelberg98f540d2009-05-18 01:36:47 +0200154This environment variable can be set to specify the path & name of the
155"auto.conf" file. Its default value is "include/config/auto.conf".
156
Michal Marekbc081dd2009-12-07 16:38:33 +0100157KCONFIG_TRISTATE
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300158----------------
Michal Marekbc081dd2009-12-07 16:38:33 +0100159This environment variable can be set to specify the path & name of the
160"tristate.conf" file. Its default value is "include/config/tristate.conf".
161
Markus Heidelberg98f540d2009-05-18 01:36:47 +0200162KCONFIG_AUTOHEADER
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300163------------------
Markus Heidelberg98f540d2009-05-18 01:36:47 +0200164This environment variable can be set to specify the path & name of the
Sam Ravnborg264a2682009-10-18 00:49:24 +0200165"autoconf.h" (header) file.
166Its default value is "include/generated/autoconf.h".
Markus Heidelberg98f540d2009-05-18 01:36:47 +0200167
Randy Dunlap2af238e2008-02-29 14:21:53 -0800168
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300169----------------------------------------------------------------------
170
Randy Dunlap2af238e2008-02-29 14:21:53 -0800171menuconfig
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300172----------
Randy Dunlap2af238e2008-02-29 14:21:53 -0800173
174SEARCHING for CONFIG symbols
175
176Searching in menuconfig:
177
178 The Search function searches for kernel configuration symbol
179 names, so you have to know something close to what you are
180 looking for.
181
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300182 Example::
183
Randy Dunlap2af238e2008-02-29 14:21:53 -0800184 /hotplug
185 This lists all config symbols that contain "hotplug",
Stephen Rothwell40b31362013-05-21 13:49:35 +1000186 e.g., HOTPLUG_CPU, MEMORY_HOTPLUG.
Randy Dunlap2af238e2008-02-29 14:21:53 -0800187
Randy Dunlap452d4c82018-07-04 15:49:56 -0700188 For search help, enter / followed by TAB-TAB (to highlight
Randy Dunlap2af238e2008-02-29 14:21:53 -0800189 <Help>) and Enter. This will tell you that you can also use
190 regular expressions (regexes) in the search string, so if you
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300191 are not interested in MEMORY_HOTPLUG, you could try::
Randy Dunlap2af238e2008-02-29 14:21:53 -0800192
193 /^hotplug
194
Yann E. MORIN193b40a2013-05-06 14:57:47 +0200195 When searching, symbols are sorted thus:
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300196
Yann E. MORIN9e554dd2013-07-09 23:15:17 +0200197 - first, exact matches, sorted alphabetically (an exact match
198 is when the search matches the complete symbol name);
199 - then, other matches, sorted alphabetically.
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300200
Yann E. MORIN193b40a2013-05-06 14:57:47 +0200201 For example: ^ATH.K matches:
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300202
Yann E. MORIN193b40a2013-05-06 14:57:47 +0200203 ATH5K ATH9K ATH5K_AHB ATH5K_DEBUG [...] ATH6KL ATH6KL_DEBUG
204 [...] ATH9K_AHB ATH9K_BTCOEX_SUPPORT ATH9K_COMMON [...]
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300205
Yann E. MORIN193b40a2013-05-06 14:57:47 +0200206 of which only ATH5K and ATH9K match exactly and so are sorted
207 first (and in alphabetical order), then come all other symbols,
208 sorted in alphabetical order.
209
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300210----------------------------------------------------------------------
211
Markus Heidelberg98f540d2009-05-18 01:36:47 +0200212User interface options for 'menuconfig'
Randy Dunlap2af238e2008-02-29 14:21:53 -0800213
Markus Heidelberg98f540d2009-05-18 01:36:47 +0200214MENUCONFIG_COLOR
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300215----------------
Randy Dunlap2af238e2008-02-29 14:21:53 -0800216It is possible to select different color themes using the variable
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300217MENUCONFIG_COLOR. To select a theme use::
Randy Dunlap2af238e2008-02-29 14:21:53 -0800218
219 make MENUCONFIG_COLOR=<theme> menuconfig
220
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300221Available themes are::
222
223 - mono => selects colors suitable for monochrome displays
224 - blackbg => selects a color scheme with black background
225 - classic => theme with blue background. The classic look
226 - bluetitle => a LCD friendly version of classic. (default)
Randy Dunlap2af238e2008-02-29 14:21:53 -0800227
Randy Dunlap2af238e2008-02-29 14:21:53 -0800228MENUCONFIG_MODE
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300229---------------
Randy Dunlap2af238e2008-02-29 14:21:53 -0800230This mode shows all sub-menus in one large tree.
231
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300232Example::
233
Markus Heidelberg98f540d2009-05-18 01:36:47 +0200234 make MENUCONFIG_MODE=single_menu menuconfig
235
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300236----------------------------------------------------------------------
Randy Dunlap2af238e2008-02-29 14:21:53 -0800237
Randy Dunlap452d4c82018-07-04 15:49:56 -0700238nconfig
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300239-------
Randy Dunlap452d4c82018-07-04 15:49:56 -0700240
241nconfig is an alternate text-based configurator. It lists function
242keys across the bottom of the terminal (window) that execute commands.
243You can also just use the corresponding numeric key to execute the
244commands unless you are in a data entry window. E.g., instead of F6
245for Save, you can just press 6.
246
247Use F1 for Global help or F3 for the Short help menu.
248
249Searching in nconfig:
250
251 You can search either in the menu entry "prompt" strings
252 or in the configuration symbols.
253
254 Use / to begin a search through the menu entries. This does
255 not support regular expressions. Use <Down> or <Up> for
256 Next hit and Previous hit, respectively. Use <Esc> to
257 terminate the search mode.
258
259 F8 (SymSearch) searches the configuration symbols for the
260 given string or regular expression (regex).
261
262NCONFIG_MODE
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300263------------
Randy Dunlap452d4c82018-07-04 15:49:56 -0700264This mode shows all sub-menus in one large tree.
265
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300266Example::
Mauro Carvalho Chehab16886942019-07-09 13:25:51 -0300267
Randy Dunlap452d4c82018-07-04 15:49:56 -0700268 make NCONFIG_MODE=single_menu nconfig
269
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300270----------------------------------------------------------------------
Randy Dunlap452d4c82018-07-04 15:49:56 -0700271
Randy Dunlap2af238e2008-02-29 14:21:53 -0800272xconfig
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300273-------
Randy Dunlap2af238e2008-02-29 14:21:53 -0800274
275Searching in xconfig:
276
277 The Search function searches for kernel configuration symbol
278 names, so you have to know something close to what you are
279 looking for.
280
Mauro Carvalho Chehab16886942019-07-09 13:25:51 -0300281 Example::
282
Randy Dunlap2af238e2008-02-29 14:21:53 -0800283 Ctrl-F hotplug
Mauro Carvalho Chehab16886942019-07-09 13:25:51 -0300284
285 or::
286
Randy Dunlap2af238e2008-02-29 14:21:53 -0800287 Menu: File, Search, hotplug
288
289 lists all config symbol entries that contain "hotplug" in
290 the symbol name. In this Search dialog, you may change the
291 config setting for any of the entries that are not grayed out.
292 You can also enter a different search string without having
293 to return to the main menu.
294
295
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300296----------------------------------------------------------------------
297
Randy Dunlap2af238e2008-02-29 14:21:53 -0800298gconfig
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300299-------
Randy Dunlap2af238e2008-02-29 14:21:53 -0800300
301Searching in gconfig:
302
Randy Dunlap452d4c82018-07-04 15:49:56 -0700303 There is no search command in gconfig. However, gconfig does
304 have several different viewing choices, modes, and options.