blob: 364913390f77f401fe5b743c917914e7da5ba941 (
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
|
config MAIN_FLAG
bool
config MAIN_FLAG_DEPENDENCY
bool "Main Feature Dependency"
default y
depends on MAIN_FLAG
config MAIN_FLAG_SELECT
bool "Main Feature Dependent"
select MAIN_FLAG
choice MULTIPLE_CHOICES
prompt "Multiple Choice Option"
config FIRST_CHOICE
bool "First Choice Option"
depends on !MAIN_FLAG
config SECOND_CHOICE
bool "Second Choice Option"
endchoice
config UNSET_FLAG
bool "Disabled Feature"
|