summaryrefslogtreecommitdiff
path: root/tests/Kbounds
blob: 52e61c99cee086d4aad01881ab18d3e9dac6fe3d (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
78
79
80
81
82
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

menuconfig 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 N_IMPLIER
    def_tristate n
    imply N_IMPLIED_BOOL
    imply N_IMPLIED_TRISTATE

config M_IMPLIER
    def_tristate m
    imply M_IMPLIED_BOOL
    imply M_IMPLIED_TRISTATE

config Y_IMPLIER
    def_tristate y
    imply Y_IMPLIED_BOOL
    imply Y_IMPLIED_TRISTATE

config N_IMPLIED_BOOL
    bool "n-implied bool"

config N_IMPLIED_TRISTATE
    tristate "n-implied tristate"

config M_IMPLIED_BOOL
    bool "m-implied bool"

config M_IMPLIED_TRISTATE
    tristate "m-implied tristate"

config Y_IMPLIED_BOOL
    bool "y-implied bool"

config Y_IMPLIED_TRISTATE
    tristate "y-implied tristate"

config STRING
    string "string"

config INT
    int "int"

config HEX
    hex "hex"