hc
2023-12-02 57e32c52610e6a560beda60bf33c48f9f42306d5
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
choice
   prompt "choice"
 
config A
   bool "A"
 
config B
   bool "B"
 
if B
choice
   prompt "sub choice"
 
config C
   bool "C"
 
config D
   bool "D"
 
if D
choice
   prompt "subsub choice"
 
config E
   bool "E"
 
endchoice
endif # D
 
endchoice
endif # B
 
endchoice