mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
23 lines
179 B
Text
23 lines
179 B
Text
![]() |
choice
|
||
|
prompt "choose A or B"
|
||
|
|
||
|
config A
|
||
|
bool "A"
|
||
|
|
||
|
config B
|
||
|
bool "B"
|
||
|
|
||
|
endchoice
|
||
|
|
||
|
choice
|
||
|
prompt "choose X or Y"
|
||
|
depends on B
|
||
|
|
||
|
config X
|
||
|
bool "X"
|
||
|
|
||
|
config Y
|
||
|
bool "Y"
|
||
|
|
||
|
endchoice
|