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

config CONFIG_A
	bool "A"
	default y

config CONFIG_A0
	bool "A0"
	depends on CONFIG_A
	default y
	help
	  This depends on CONFIG_A, so should be a submenu of CONFIG_A.

config CONFIG_A0_0
	bool "A1_0"
	depends on CONFIG_A0
	help
	  Submenus are created recursively.
	  This should be a submenu of CONFIG_A0.

config CONFIG_A1
	bool "A1"
	depends on CONFIG_A
	default y
	help
	  This should line up with CONFIG_A0.

choice
	prompt "choice"
	depends on CONFIG_A1
	help
	  Choice should become a submenu as well.

config CONFIG_A1_0
	bool "A1_0"

config CONFIG_A1_1
	bool "A1_1"

endchoice

config CONFIG_B
	bool "B"
	help
	  This is independent of CONFIG_A.

config CONFIG_C
	bool "C"
	depends on CONFIG_A
	help
	  This depends on CONFIG_A, but not a consecutive item, so can/should not
	  be a submenu.