aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/tests/choice_randomize2/Kconfig
blob: 530cf2ef7f4705807f9cc587606f87385eacaac1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
choice
	prompt "This is always invisible"
	depends on n

config DUMMY
	bool "DUMMY"

endchoice

choice
	prompt "Choose A or B"

config A
	bool "A"

config B
	bool "B"

endchoice

config FOO
	bool "FOO"
	depends on A

choice
	prompt "Choose X"
	depends on FOO

config X
	bool "X"

endchoice