blob: a36a0fd3f160085d13a9fdf60cded9ca74ca2956 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
config NO_PROMPT
tristate
config SINGLE_PROMPT_1
bool "single prompt 1"
config SINGLE_PROMPT_2
bool
prompt "single prompt 2" if n
config MULTI_PROMPT
bool "ignored prompt"
prompt "prompt 1"
config MULTI_PROMPT
bool "prompt 2"
config MULTI_PROMPT
bool
config MULTI_PROMPT
bool
prompt "prompt 3"
config MULTI_PROMPT
bool
prompt "ignored prompt"
prompt "ignored prompt 2" if y
prompt "prompt 4" if y
choice NO_PROMPT_CHOICE
tristate
config A
bool
config B
bool
endchoice
choice SINGLE_PROMPT_1_CHOICE
bool "single prompt 1 choice"
config C
bool
config D
bool
endchoice
choice SINGLE_PROMPT_2_CHOICE
bool "ignored prompt"
prompt "single prompt 2 choice"
config E
bool
config F
bool
endchoice
choice MULTI_PROMPT_CHOICE
bool "prompt 1 choice"
config G
bool
config H
bool
endchoice
choice MULTI_PROMPT_CHOICE
bool
prompt "prompt 2 choice"
config I
bool
config J
bool
endchoice
choice MULTI_PROMPT_CHOICE
bool
prompt "ignored prompt"
prompt "prompt 3 choice"
config K
bool
config L
bool
endchoice
|