xref: /openbmc/linux/scripts/kconfig/tests/inter_choice/Kconfig (revision fed8b7e366e7c8f81e957ef91aa8f0a38e038c66)
1config MODULES
2	def_bool y
3	option modules
4
5choice
6	prompt "Choice"
7
8config CHOICE_VAL0
9	tristate "Choice 0"
10
11config CHOIVE_VAL1
12	tristate "Choice 1"
13
14endchoice
15
16choice
17	prompt "Another choice"
18	depends on CHOICE_VAL0
19
20config DUMMY
21	bool "dummy"
22
23endchoice
24