Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Feb 10-13, 2025
Register
Loading...
Note: File does not exist in v3.1.
 1# SPDX-License-Identifier: GPL-2.0
 2
 3config MODULES
 4	def_bool y
 5	modules
 6
 7choice
 8	prompt "Choice"
 9
10config CHOICE_VAL0
11	tristate "Choice 0"
12
13config CHOIVE_VAL1
14	tristate "Choice 1"
15
16endchoice
17
18choice
19	prompt "Another choice"
20	depends on CHOICE_VAL0
21
22config DUMMY
23	bool "dummy"
24
25endchoice