diff options
author | FreeArtMan <dos21h@gmail.com> | 2014-12-09 10:31:37 +0900 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2014-12-09 10:31:37 +0900 |
commit | a57c6bed8f6ab7d0f4355190c0cff7cd913da6a0 (patch) | |
tree | c8b85b9de364cb63678d05625bdff6a2cf12ecda /Kconfig | |
parent | dc4bbe5366d6c733f9f77b7c9fee0cbba3e0d92b (diff) | |
download | microbbs-a57c6bed8f6ab7d0f4355190c0cff7cd913da6a0.tar.gz microbbs-a57c6bed8f6ab7d0f4355190c0cff7cd913da6a0.zip |
New planned functionality. Menuconfig support. Simple captcha.
Diffstat (limited to 'Kconfig')
-rw-r--r-- | Kconfig | 60 |
1 files changed, 60 insertions, 0 deletions
@@ -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 |