Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v5.11-rc7 25 lines 293 B view raw
1# SPDX-License-Identifier: GPL-2.0 2 3config MODULES 4 def_bool y 5 option modules 6 7choice 8 prompt "Choice" 9 10config CHOICE_VAL0 11 tristate "Choice 0" 12 13config CHOIVE_VAL1 14 tristate "Choice 1" 15 16endchoice 17 18choice 19 prompt "Another choice" 20 depends on CHOICE_VAL0 21 22config DUMMY 23 bool "dummy" 24 25endchoice