repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
drm/panfrost: Remove set but not used variable 'bo'
[linux/fpc-iii.git]
/
scripts
/
kconfig
/
tests
/
new_choice_with_dep
/
Kconfig
blob
127731c046b5b3f75575fec76425821a6654eee3
1
# SPDX-License-Identifier: GPL-2.0
2
3
config A
4
bool "A"
5
help
6
This is a new symbol.
7
8
choice
9
prompt "Choice ?"
10
depends on A
11
help
12
"depends on A" has been newly added.
13
14
config CHOICE_B
15
bool "Choice B"
16
17
config CHOICE_C
18
bool "Choice C"
19
help
20
This is a new symbol, so should be asked.
21
22
endchoice
23
24
choice
25
prompt "Choice2 ?"
26
27
config CHOICE_D
28
bool "Choice D"
29
30
config CHOICE_E
31
bool "Choice E"
32
33
config CHOICE_F
34
bool "Choice F"
35
depends on A
36
help
37
This is a new symbol, so should be asked.
38
39
endchoice