aboutsummaryrefslogtreecommitdiffstats
path: root/Kconfig
blob: 7f69c12544877332a3a83caa01cbf6e2fe01a77b (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
29
30
31
32
33
34
35
36
37
38
source "debug/Kconfig"
source "status/Kconfig"

choice 
	prompt "Formating mode"
	help 
	  Choose different formating modes for

	config STATUS_FMT_NONE
		bool "No formating"
	
	config STATUS_FMT_COLOR
		bool "Simple escape sequence formating"

	config STATUS_FMT_PANGO
		bool "Set formating for pango"

endchoice

choice
	prompt "ASCII/UTF8"

	config STATUS_ASCII
		bool "ASCII text"

	config STATUS_UTF8
		bool "UTF8 icons"

endchoice

choice 
	prompt "Debug"
	config DEBUG_NONE
		bool "No debug"
	config DEBUG_MODE
		bool "ASSERT type debuging"
endchoice