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
|
config NO_REFS
bool
config JUST_DEPENDS_ON_REFS
bool
depends on A && B
if A
menu "menu"
depends on B
visible if C
visible if D
config LOTS_OF_REFS
bool "lots" if C || D
default E || F if G || H
default I || J if K || L
select M if N || O
select P if Q || R
imply S if T || U
imply V if W || X
depends on Y || Z
endmenu
endif
config INT_REFS
int "int"
range A B if C && D
range E F if G && H
choice CHOICE
bool "choice"
config CHOICE_REF
bool "choice ref"
endchoice
comment "comment"
depends on A || B
config MULTI_DEF_SYM
def_bool A && B
config MULTI_DEF_SYM
depends on C
choice MULTI_DEF_CHOICE
bool "choice"
depends on A && B
endchoice
choice MULTI_DEF_CHOICE
bool "choice"
depends on C
endchoice
|