Setting Kconfig configuration values¶
The menuconfig and guiconfig interfaces can be used to test out configurations during application development. This page explains how to make settings permanent.
All Kconfig options can be searched in the Kconfig search page.
Note
Before making changes to Kconfig files, it’s a good idea to also go through the Kconfig - Tips and Best Practices page.
Visible and invisible Kconfig symbols¶
When making Kconfig changes, it’s important to understand the difference between visible and invisible symbols.
- A visible symbol is a symbol defined with a prompt. Visible symbols show up in the interactive configuration interfaces (hence visible), and can be set in configuration files. - Here’s an example of a visible symbol: - config FPU bool "Support floating point operations" depends on HAS_FPU - The symbol is shown like this in - menuconfig, where it can be toggled:- [ ] Support floating point operations 
- An invisible symbol is a symbol without a prompt. Invisible symbols are not shown in the interactive configuration interfaces, and users have no direct control over their value. They instead get their value from defaults or from other symbols. - Here’s an example or an invisible symbol: - config CPU_HAS_FPU bool help This symbol is y if the CPU has a hardware floating point unit.- In this case, - CPU_HAS_FPUis enabled through other symbols having- select CPU_HAS_FPU.
Setting symbols in configuration files¶
Visible symbols can be configured by setting them in configuration files. The
initial configuration is produced by merging a *_defconfig file for the
board with application settings, usually from prj.conf. See
The Initial Configuration below for more details.
Assignments in configuration files use this syntax:
CONFIG_<symbol name>=<value>
There should be no spaces around the equals sign.
bool symbols can be enabled or disabled by setting them to y or n,
respectively. The FPU symbol from the example above could be enabled like
this:
CONFIG_FPU=y
Note
A boolean symbol can also be set to n with a comment formatted like
this:
# CONFIG_SOME_OTHER_BOOL is not set
This is the format you will see in the merged configuration in
zephyr/.config.
This style is accepted for historical reasons: Kconfig configuration files
can be parsed as makefiles (though Zephyr doesn’t use this). Having
n-valued symbols correspond to unset variables simplifies tests in Make.
Other symbol types are assigned like this:
CONFIG_SOME_STRING="cool value"
CONFIG_SOME_INT=123
Comments use a #:
# This is a comment
Assignments in configuration files are only respected if the dependencies for the symbol are satisfied. A warning is printed otherwise. To figure out what the dependencies of a symbol are, use one of the interactive configuration interfaces (you can jump directly to a symbol with /), or look up the symbol in the Kconfig search page.
The Initial Configuration¶
The initial configuration for an application comes from merging configuration settings from three sources:
- A - BOARD-specific configuration file stored in- boards/<architecture>/<BOARD>/<BOARD>_defconfig
- Any CMake cache entries prefix with - CONFIG_
- The application configuration 
The application configuration can come from the sources below. By default,
prj.conf is used.
- If - CONF_FILEis set, the configuration file(s) specified in it are merged and used as the application configuration.- CONF_FILEcan be set in various ways:- In - CMakeLists.txt, before calling- find_package(Zephyr)
- By passing - -DCONF_FILE=<conf file(s)>, either directly or via- west
- From the CMake variable cache 
 
- Otherwise if - CONF_FILEis set, and a single configuration file of the form- prj_<build>.confis used, then if file- boards/<BOARD>_<build>.confexists in same folder as file- prj_<build>.conf, the result of merging- prj_<build>.confand- boards/<BOARD>_<build>.confis used.
- Otherwise, - prj_<BOARD>.confis used if it exists in the application directory.
- Otherwise, if - boards/<BOARD>.confexists in the application directory, the result of merging it with- prj.confis used.
- Otherwise, if board revisions are used and - boards/<BOARD>_<revision>.confexists in the application directory, the result of merging it with- prj.confand- boards/<BOARD>.confis used.
- Otherwise, - prj.confis used if it exists in the application directory
If a symbol is assigned both in <BOARD>_defconfig and in the
application configuration, the value set in the application configuration takes
precedence.
The merged configuration is saved to zephyr/.config in the build
directory.
As long as zephyr/.config exists and is up-to-date (is newer than any
BOARD and application configuration files), it will be used in preference
to producing a new merged configuration. zephyr/.config is also the
configuration that gets modified when making changes in the interactive
configuration interfaces.
Configuring invisible Kconfig symbols¶
When making changes to the default configuration for a board, you might have to
configure invisible symbols. This is done in
boards/<architecture>/<BOARD>/Kconfig.defconfig, which is a regular
Kconfig file.
Note
Assignments in .config files have no effect on invisible symbols,
so this scheme is not just an organizational issue.
Assigning values in Kconfig.defconfig relies on defining a Kconfig
symbol in multiple locations. As an example, say we want to set FOO_WIDTH
below to 32:
config FOO_WIDTH
    int
To do this, we extend the definition of FOO_WIDTH as follows, in
Kconfig.defconfig:
if BOARD_MY_BOARD
config FOO_WIDTH
    default 32
endif
Note
Since the type of the symbol (int) has already been given at the first
definition location, it does not need to be repeated here. Only giving the
type once at the “base” definition of the symbol is a good idea for reasons
explained in Common Kconfig shorthands.
default values in Kconfig.defconfig files have priority over
default values given on the “base” definition of a symbol. Internally, this
is implemented by including the Kconfig.defconfig files first. Kconfig
uses the first default with a satisfied condition, where an empty condition
corresponds to if y (is always satisfied).
Note that conditions from surrounding top-level ifs are propagated to
symbol properties, so the above default is equivalent to
default 32 if BOARD_MY_BOARD.
Warning
When defining a symbol in multiple locations, dependencies are ORed together rather than ANDed together. It is not possible to make the dependencies of a symbol more restrictive by defining it in multiple locations.
For example, the direct dependencies of the symbol below becomes
DEP1 || DEP2:
config FOO
  ...
  depends on DEP1
config FOO
  ...
  depends on DEP2
When making changes to Kconfig.defconfig files, always check the
symbol’s direct dependencies in one of the interactive configuration
interfaces afterwards. It is often necessary to repeat
dependencies from the base definition of the symbol to avoid weakening a
symbol’s dependencies.
Motivation for Kconfig.defconfig files¶
One motivation for this configuration scheme is to avoid making fixed
BOARD-specific settings configurable in the interactive configuration
interfaces. If all board configuration were done via <BOARD>_defconfig,
all symbols would have to be visible, as values given in
<BOARD>_defconfig have no effect on invisible symbols.
Having fixed settings be user-configurable would clutter up the configuration interfaces and make them harder to understand, and would make it easier to accidentally create broken configurations.
When dealing with fixed board-specific settings, also consider whether they should be handled via devicetree instead.
Configuring choices¶
There are two ways to configure a Kconfig choice:
- By setting one of the choice symbols to - yin a configuration file.- Setting one choice symbol to - yautomatically gives all other choice symbols the value- n.- If multiple choice symbols are set to - y, only the last one set to- ywill be honored (the rest will get the value- n). This allows a choice selection from a board- defconfigfile to be overridden from an application- prj.conffile.
- By changing the - defaultof the choice in- Kconfig.defconfig.- As with symbols, changing the default for a choice is done by defining the choice in multiple locations. For this to work, the choice must have a name. - As an example, assume that a choice has the following base definition (here, the name of the choice is - FOO):- choice FOO bool "Foo choice" default B config A bool "A" config B bool "B" endchoice- To change the default symbol of - FOOto- A, you would add the following definition to- Kconfig.defconfig:- choice FOO default A endchoice
The Kconfig.defconfig method should be used when the dependencies of
the choice might not be satisfied. In that case, you’re setting the default
selection whenever the user makes the choice visible.
More Kconfig resources¶
The Kconfig - Tips and Best Practices page has some tips for writing Kconfig files.
The kconfiglib.py docstring docstring (at the top of the file) goes over how symbol values are calculated in detail.