blob: 725f6613425cf9675c979888b3bc37d4a8fb8020 (
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
|
# For testing various minor APIs
# is_optional()
choice NOT_OPTIONAL
bool "not optional"
config A
bool "A"
config B
bool "B"
endchoice
choice OPTIONAL
tristate "optional"
optional
config C
tristate "C"
config D
tristate "D"
# Quirky symbols - not proper choice symbol
config Q1
tristate "Q1"
depends on D
config Q2
tristate "Q2"
depends on Q1
config Q3
tristate "Q3"
depends on D
endchoice
# get_user_value()
config BOOL
bool "bool" if NOT_DEFINED_1
config TRISTATE
tristate # Visibility should not affect user value
config STRING
string "string"
config INT
int # Visibility should not affect user value
config HEX
hex "hex"
depends on NOT_DEFINED_2
comment "comment"
menu "menu"
depends on NOT_DEFINED_3 || NOT_DEFINED_2
depends on !NOT_DEFINED_4
endmenu
config FROM_ENV
string
option env="ENV_VAR"
config FROM_ENV_MISSING
string
option env="MISSING_ENV_VAR"
|