summaryrefslogtreecommitdiff
path: root/apps/system/inifile/Kconfig
blob: 012ac2b120d77f97d6393ac26d60defa57061bf4 (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
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config SYSTEM_INIFILE
	bool "INI file parser"
	default n
	---help---
		Enable support for a simple INI file parser.

if SYSTEM_INIFILE

config SYSTEM_INIFILE_MAXLINE
	int "Max line length"
	default 256
	---help---
		The largest line that the parser can expect to see in an INI file.

config SYSTEM_INIFILE_DEBUGLEVEL
	int "Debug level"
	default 0
	range 0 2
	---help---
		0=Debug off; 1=Print errors on console; 2=Print debug information
		on the console.

endif # SYSTEM_INIFILE