From a57c6bed8f6ab7d0f4355190c0cff7cd913da6a0 Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Tue, 9 Dec 2014 10:31:37 +0900 Subject: New planned functionality. Menuconfig support. Simple captcha. --- Kconfig | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 Kconfig (limited to 'Kconfig') diff --git a/Kconfig b/Kconfig new file mode 100644 index 0000000..3e5af48 --- /dev/null +++ b/Kconfig @@ -0,0 +1,60 @@ +menuconfig TODO + bool "List of todo" + option todo + +if TODO +endif + +menuconfig TWIT + bool "Twit soem short messages" + option twit + default n + +if TWIT +endif + +menuconfig DOORGAMES + bool "Door games" + option doorgames + default n + +if DOORGAMES +endif + +menuconfig BOARD + bool "Messaging board" + option board + default n + +if BOARD +endif + +menuconfig LOGIN + bool "User login support" + option login + default n + +if LOGIN +endif + +menuconfig ARTICLES + bool "Read articles" + option articles + default y + +if ARTICLES +endif + +menuconfig MOTD + bool "Motd message" + option motd + default y + +if MOTD +endif + + + +config CAPTCHA + bool "Enable simple captcha" + default y -- cgit v1.2.3