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"
	help
	  This is a new symbol.

choice
	prompt "Choice ?"
	depends on CONFIG_A
	help
	  "depends on A" has been newly added.

config CONFIG_CHOICE_B
	bool "Choice B"

config CONFIG_CHOICE_C
	bool "Choice C"
	help
	  This is a new symbol, so should be asked.

endchoice

choice
	prompt "Choice2 ?"

config CONFIG_CHOICE_D
	bool "Choice D"

config CONFIG_CHOICE_E
	bool "Choice E"

config CONFIG_CHOICE_F
	bool "Choice F"
	depends on CONFIG_A
	help
	  This is a new symbol, so should be asked.

endchoice