Last edited 2 weeks ago

Menuconfig or how to configure kernel

Applicable for STM32MP13x lines, STM32MP15x lines, STM32MP25x lines

1. Linux configuration genericity[edit source]

The process of building a kernel has two parts: configuring the kernel options and building the source with those options.

The Linux® kernel configuration is found in the generated file: .config.

.config is the result of configuring task which is processing platform defconfig and fragment files if any.


For OpenSTLinux distribution the defconfig is located into the kernel source code and fragments into stm32mp BSP layer :

- arch/arm/configs/multi_v7_defconfig for arm 32bits
- arch/arm64/configs/defconfig for arm 64bits

Every new kernel version brings a bunch of new options, we do not want to back port them into a specific defconfig file each time the kernel releases, so we use the same defconfig file based on ARM SoC architecture.
STM32MP specificities are managed with fragments config files.

- meta-st/meta-st-stm32mp/recipes-kernel/linux/linux-stm32mp/<kernel version>/fragment-*.config

.config result is located in the build folder:

- build-openstlinuxweston-<machine name>/tmp-glibc/work/<machine>-ostl-linux-gnueabi/linux-stm32mp/<kernel recipe version>/build/.config

or config-<kernel-version> result is located in the deploy folder:

- build-openstlinuxweston-<machine name>/tmp-glibc/deploy/image/<machine name>/kernel/config-<kernel recipe version>

To modify the kernel options, it is not recommended to edit this file directly.

  • A user runs either a text-mode :
   make config 
starts a character based question and answer session (Figure 1)
Figure 1. Configuring the kernel with make config


   make menuconfig 
starts a terminal-oriented configuration tool (using ncurses) (Figure 2)
The ncurses text version is more popular and is run with the make menuconfig option.
Wikipedia Menuconfig[1] also explains how to "navigate" within the configuration menu, and highlights main key strokes. 
Figure 2. Make menuconfig makes it easier to back up and correct mistakes


  • or a graphical kernel configurator :
   make xconfig 
starts a X based configuration tool (Figure 3)
Figure 3. The Qt-Based make xconfig


Ultimately these configuration tools edit the .config file.

An option indicates either some driver is built into the kernel ("=y") or will be built as a module ("=m") or is not selected.

The unselected state can either be indicated by a line starting with "#" (e.g. "# CONFIG_SCSI is not set") or by the absence of the relevant line from the .config file.


The 3 states of the main selection option for the SCSI subsystem (which actually selects the SCSI mid level driver) follow. Only one of these should appear in an actual .config file:

CONFIG_SCSI=y
CONFIG_SCSI=m
# CONFIG_SCSI is not set

2. Menuconfig and Developer Package[edit source]

For this use case, the prerequesite is that OpenSTLinux SDK has been installed and configured.

To verify if your cross-compilation environment has been put in place correctly, run the following command:
For Arm32bits:

Arm32bits set | grep CROSS
CROSS_COMPILE=arm-ostl-linux-gnueabi-

For Arm64bits:

Arm64bits set | grep CROSS
CROSS_COMPILE=aarch64-ostl-linux-

For more details, refer to <Linux kernel installation directory>/README.HOW_TO.txt helper file (the latest version of this helper file is also available in GitHub: README.HOW_TO.txt ).

  • Go to the <Linux kernel build directory>
cd <Linux kernel build directory>
  • Save initial configuration (to identify later configuration updates)
Arm32bits make ARCH=arm savedefconfig 
Arm64bits make ARCH=arm64 savedefconfi
Result is stored in defconfig file
cp defconfig defconfig.old
  • Start the Linux kernel configuration menu
Arm32bits make ARCH=arm menuconfig
Arm64bits make ARCH=arm64 menuconfi
  • Navigate forwards or backwards directly between feature
    • un/select, modify feature(s) you want
    • When the configuration is OK : exit and save the new configuration
useful keys to know:
enter: enter in config subdirectory
space: hit several times to either select [*], select in module [m] or unselect [ ] 
/: to search for a keyword, this is usefull to navigate in tree
?: to have more information on selected line
  • Compare the old and new config files after operating modifications with menuconfig
Arm32bits make ARCH=arm savedefconfig
Arm64bits make ARCH=arm64 savedefconfig

Retrieve configuration updates by comparing the new defconfig and the old one

meld defconfig defconfig.old
  • Cross-compile the Linux kernel (please check the load address in the README.HOW_TO.txt helper file)

For Arm32bits:

Arm32bits make ARCH=arm uImage LOADADDR=<loadaddr of kernel>
Arm32bits cp arch/arm/boot/uImage install_artifact/boot/

For Arm64bits:

Arm64bits make ARCH=arm64 Image.gz LOADADDR=<loadaddr of kernel>
Arm64bits cp arch/arm64/boot/Image.gz install_artifact/boot/
  • Update the Linux kernel image on board
Arm32bits scp install_artifact/boot/uImage root@<board ip address>:/boot/
Arm64bits scp install_artifact/boot/Image.gz root@<board ip address>:/boot/
  • Reboot the board
 cd /boot; sync; systemctl reboot

Note that this use case modifies the configuration file in the Linux kernel build directory, not in the Linux kernel source directory: this is a temporary modification useful for a prototyping.

  • To make this temporary modification permanent, the delta between defconfig and defconfig.old must be saved in a configuration fragment file (fragment-*.config) based on fragment.cfg file, and the Linux kernel configuration/compilation steps must be re-executed (as explained in the README.HOW_TO.txt helper file).

3. Menuconfig and Distribution Package[edit source]

  • Start the Linux kernel configuration menu
bitbake virtual/kernel -c menuconfig
  • Navigate forwards or backwards directly between feature
    • un/select, modify feature(s) you want
    • When the configuration is OK : exit and save the new configuration
useful keys to know:
enter: enter in config subdirectory
space: hit several times to either select [*], select in module [m] or unselect [ ] 
/: to search for a keyword, this is usefull to navigate in tree
?: to have more information on selected line
  • Cross-compile the Linux kernel
bitbake virtual/kernel
  • Update the Linux kernel image on board

For Arm32bits:

scp <build dir>/tmp-glibc/deploy/images/<machine name>/kernel/uImage root@<board ip address>:/boot

For Arm64bits:

scp <build dir>/tmp-glibc/deploy/images/<machine name>/kernel/Image.gz root@<board ip address>:/boot
Info white.png Information
If the /boot mounting point does not exist yet, please see [[How to cross-compile with the

Distribution Package#Creating a mounting point|how to create a mounting point]]

  • Reboot the board
 cd /boot; sync; systemctl reboot

Note that this use case modifies the configuration file in the Linux kernel build directory, not in the Linux kernel source directory: this is a temporary modification useful for a prototyping.

  • To make this temporary modification permanent, it must be saved in a configuration fragment file (fragment-*.config) based on fragment.cfg file, and the Linux kernel configuration/compilation steps must be re-executed: bitbake <name of kernel recipe>.


4. References[edit source]