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