xref: /openbmc/linux/scripts/kconfig/tests/inter_choice/Kconfig (revision f7eeb00845934851b580b188f079545ab176fa5c)
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
26