summaryrefslogtreecommitdiff
path: root/tests/Krepr
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2017-10-09 23:05:00 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2017-10-24 19:24:08 +0200
commitdd0e227216e247d2040cdd40bf7397702880cdc4 (patch)
tree4c76ebb2e7555d28214cddecf32ffb424fa1732b /tests/Krepr
parentf64aaf971176305233f16a11911a660fa6f99561 (diff)
Kconfiglib 2 backup
WIP
Diffstat (limited to 'tests/Krepr')
-rw-r--r--tests/Krepr61
1 files changed, 61 insertions, 0 deletions
diff --git a/tests/Krepr b/tests/Krepr
new file mode 100644
index 0000000..d886fe3
--- /dev/null
+++ b/tests/Krepr
@@ -0,0 +1,61 @@
+config MODULES
+ bool
+ option modules
+ default y
+
+if UNDEFINED
+endif
+
+config BASIC
+ bool
+ default y
+ help
+
+config VISIBLE
+ bool "visible"
+
+config DIR_DEP_N
+ depends on n
+
+config OPTIONS
+ option allnoconfig_y
+ option defconfig_list
+ option env="ENV"
+
+config MULTI_DEF
+config MULTI_DEF
+
+menuconfig MENUCONFIG
+
+choice CHOICE
+ tristate "choice"
+
+config CHOICE_1
+ tristate "choice sym"
+
+config CHOICE_2
+ tristate "choice sym"
+
+endchoice
+
+config CHOICE_HOOK
+
+choice
+ tristate "choice" if n
+ optional
+endchoice
+
+config NO_VISIBLE_IF_HOOK
+
+menu "no visible if"
+endmenu
+
+config VISIBLE_IF_HOOK
+
+menu "visible if"
+ visible if m
+endmenu
+
+config COMMENT_HOOK
+
+comment "comment"