summaryrefslogtreecommitdiff
path: root/src/core/Kconfig
blob: 28befc68aec796e5346d01010d9fb63050067a8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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