Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

# SPDX-License-Identifier: GPL-2.0

choice
	prompt "choice"

config CONFIG_A
	bool "A"

config CONFIG_B
	bool "B"

if CONFIG_B
choice
	prompt "sub choice"

config CONFIG_C
	bool "C"

config CONFIG_D
	bool "D"

if CONFIG_D
choice
	prompt "subsub choice"

config CONFIG_E
	bool "E"

endchoice
endif # CONFIG_D

endchoice
endif # CONFIG_B

endchoice