aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/tests/choice_randomize/Kconfig
blob: 93a1699ce3cb791857a7d78896a810272e8f97ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
choice
	prompt "choose A or B"

config A
	bool "A"

config B
	bool "B"

endchoice

choice
	prompt "choose X or Y"
	depends on B

config X
	bool "X"

config Y
	bool "Y"

endchoice