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
	bool "Enable loadable module support"
	option modules
	default y

choice
	prompt "boolean choice"
	default CONFIG_BOOL_CHOICE1

config CONFIG_BOOL_CHOICE0
	bool "choice 0"

config CONFIG_BOOL_CHOICE1
	bool "choice 1"

endchoice

choice
	prompt "optional boolean choice"
	optional
	default CONFIG_OPT_BOOL_CHOICE1

config CONFIG_OPT_BOOL_CHOICE0
	bool "choice 0"

config CONFIG_OPT_BOOL_CHOICE1
	bool "choice 1"

endchoice

choice
	prompt "tristate choice"
	default CONFIG_TRI_CHOICE1

config CONFIG_TRI_CHOICE0
	tristate "choice 0"

config CONFIG_TRI_CHOICE1
	tristate "choice 1"

endchoice

choice
	prompt "optional tristate choice"
	optional
	default CONFIG_OPT_TRI_CHOICE1

config CONFIG_OPT_TRI_CHOICE0
	tristate "choice 0"

config CONFIG_OPT_TRI_CHOICE1
	tristate "choice 1"

endchoice