xref: /openbmc/u-boot/scripts/kconfig/tests/choice_value_with_m_dep/Kconfig (revision 407b5b956a2e0facf6668fc8b295f4be9205c83e)
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