Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.7-rc7 35 lines 284 B view raw
1# SPDX-License-Identifier: GPL-2.0 2 3choice 4 prompt "choice" 5 6config A 7 bool "A" 8 9config B 10 bool "B" 11 12if B 13choice 14 prompt "sub choice" 15 16config C 17 bool "C" 18 19config D 20 bool "D" 21 22if D 23choice 24 prompt "subsub choice" 25 26config E 27 bool "E" 28 29endchoice 30endif # D 31 32endchoice 33endif # B 34 35endchoice