1# SPDX-License-Identifier: GPL-2.0
2
3config MODULES
4	bool "Enable loadable module support"
5	modules
6	default y
7
8choice
9	prompt "boolean choice"
10	default BOOL_CHOICE1
11
12config BOOL_CHOICE0
13	bool "choice 0"
14
15config BOOL_CHOICE1
16	bool "choice 1"
17
18endchoice
19
20choice
21	prompt "tristate choice"
22	default TRI_CHOICE1
23
24config TRI_CHOICE0
25	tristate "choice 0"
26
27config TRI_CHOICE1
28	tristate "choice 1"
29
30endchoice
31