From 9381ae971066a42ad00def424c29370ced09eb60 Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Sat, 19 Dec 2015 16:32:12 +0000 Subject: Added menuconfig support. Added default config files for Linux and NetBSD. Added kconf2h tool. Small fixes to README --- core/Kconfig | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 core/Kconfig (limited to 'core/Kconfig') diff --git a/core/Kconfig b/core/Kconfig new file mode 100644 index 0000000..28befc6 --- /dev/null +++ b/core/Kconfig @@ -0,0 +1,28 @@ +menuconfig CORE + bool "Set core features" + default y + +if CORE + choice + prompt "OS support" + help + OS support configuration. Not all OS'es support all stuff + + config OS_LINUX + bool "Linux" + default y + + config OS_NETBSD + bool "NetBSD" + default n + + endchoice + + config FUTURE + bool "Future features that planned to be added" + default n + +endif + + + -- cgit v1.2.3