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_MODULES
	def_bool y
	option modules

choice
	prompt "Choice"

config CONFIG_CHOICE_VAL0
	tristate "Choice 0"

config CONFIG_CHOIVE_VAL1
	tristate "Choice 1"

endchoice

choice
	prompt "Another choice"
	depends on CONFIG_CHOICE_VAL0

config CONFIG_DUMMY
	bool "dummy"

endchoice