]> git.sur5r.net Git - u-boot/blob - scripts/kconfig/tests/inter_choice/Kconfig
kconfig: re-sync with Linux 4.17-rc4
[u-boot] / scripts / kconfig / tests / inter_choice / Kconfig
1 config MODULES
2         def_bool y
3         option modules
4
5 choice
6         prompt "Choice"
7
8 config CHOICE_VAL0
9         tristate "Choice 0"
10
11 config CHOIVE_VAL1
12         tristate "Choice 1"
13
14 endchoice
15
16 choice
17         prompt "Another choice"
18         depends on CHOICE_VAL0
19
20 config DUMMY
21         bool "dummy"
22
23 endchoice