0001 # SPDX-License-Identifier: GPL-2.0
0002
0003 config MODULES
0004 bool "Enable loadable module support"
0005 modules
0006 default y
0007
0008 choice
0009 prompt "boolean choice"
0010 default BOOL_CHOICE1
0011
0012 config BOOL_CHOICE0
0013 bool "choice 0"
0014
0015 config BOOL_CHOICE1
0016 bool "choice 1"
0017
0018 endchoice
0019
0020 choice
0021 prompt "optional boolean choice"
0022 optional
0023 default OPT_BOOL_CHOICE1
0024
0025 config OPT_BOOL_CHOICE0
0026 bool "choice 0"
0027
0028 config OPT_BOOL_CHOICE1
0029 bool "choice 1"
0030
0031 endchoice
0032
0033 choice
0034 prompt "tristate choice"
0035 default TRI_CHOICE1
0036
0037 config TRI_CHOICE0
0038 tristate "choice 0"
0039
0040 config TRI_CHOICE1
0041 tristate "choice 1"
0042
0043 endchoice
0044
0045 choice
0046 prompt "optional tristate choice"
0047 optional
0048 default OPT_TRI_CHOICE1
0049
0050 config OPT_TRI_CHOICE0
0051 tristate "choice 0"
0052
0053 config OPT_TRI_CHOICE1
0054 tristate "choice 1"
0055
0056 endchoice