Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / scripts / kconfig / tests / choice / Kconfig
bloba412205b1b0c429a38f3f400b89301d23983f73d
1 # SPDX-License-Identifier: GPL-2.0
3 config MODULES
4         bool "Enable loadable module support"
5         option modules
6         default y
8 choice
9         prompt "boolean choice"
10         default BOOL_CHOICE1
12 config BOOL_CHOICE0
13         bool "choice 0"
15 config BOOL_CHOICE1
16         bool "choice 1"
18 endchoice
20 choice
21         prompt "optional boolean choice"
22         optional
23         default OPT_BOOL_CHOICE1
25 config OPT_BOOL_CHOICE0
26         bool "choice 0"
28 config OPT_BOOL_CHOICE1
29         bool "choice 1"
31 endchoice
33 choice
34         prompt "tristate choice"
35         default TRI_CHOICE1
37 config TRI_CHOICE0
38         tristate "choice 0"
40 config TRI_CHOICE1
41         tristate "choice 1"
43 endchoice
45 choice
46         prompt "optional tristate choice"
47         optional
48         default OPT_TRI_CHOICE1
50 config OPT_TRI_CHOICE0
51         tristate "choice 0"
53 config OPT_TRI_CHOICE1
54         tristate "choice 1"
56 endchoice