blob: 9713474aae60d2a3b28db22f918a52e25e44997c (
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
|
config MODULES
def_bool y
config Y_VISIBLE_BOOL
bool "y-visible bool"
config Y_VISIBLE_TRISTATE
tristate "y-visible tristate"
config M_VISIBLE_BOOL
bool "m-visible bool" if m
config M_VISIBLE_TRISTATE
tristate "m-visible tristate" if m
config Y_SELECTOR
def_tristate y
select Y_SELECTED_BOOL
select Y_SELECTED_TRISTATE
config M_SELECTOR
def_tristate m
select M_SELECTED_BOOL
select M_SELECTED_TRISTATE
select M_SELECTED_M_VISIBLE_TRISTATE
config Y_SELECTED_BOOL
bool "y-selected bool"
config Y_SELECTED_TRISTATE
tristate "y-selected tristate"
config M_SELECTED_BOOL
bool "m-selected bool"
config M_SELECTED_TRISTATE
tristate "m-selected tristate"
config M_SELECTED_M_VISIBLE_TRISTATE
tristate "m-selected m-visible tristate" if m
config STRING
string "string"
config INT
int "int"
config HEX
hex "hex"
|