0001 # SPDX-License-Identifier: GPL-2.0
0002
0003 config A
0004 bool "A"
0005 help
0006 This is a new symbol.
0007
0008 choice
0009 prompt "Choice ?"
0010 depends on A
0011 help
0012 "depends on A" has been newly added.
0013
0014 config CHOICE_B
0015 bool "Choice B"
0016
0017 config CHOICE_C
0018 bool "Choice C"
0019 help
0020 This is a new symbol, so should be asked.
0021
0022 endchoice
0023
0024 choice
0025 prompt "Choice2 ?"
0026
0027 config CHOICE_D
0028 bool "Choice D"
0029
0030 config CHOICE_E
0031 bool "Choice E"
0032
0033 config CHOICE_F
0034 bool "Choice F"
0035 depends on A
0036 help
0037 This is a new symbol, so should be asked.
0038
0039 endchoice