xref: /openbmc/linux/scripts/kconfig/tests/choice_value_with_m_dep/Kconfig (revision ea47eed33a3fe3d919e6e3cf4e4eb5507b817188)
1config MODULES
2	def_bool y
3	option modules
4
5config DEP
6	tristate
7	default m
8
9choice
10	prompt "Tristate Choice"
11
12config CHOICE0
13	tristate "Choice 0"
14
15config CHOICE1
16	tristate "Choice 1"
17	depends on DEP
18
19endchoice
20