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