summaryrefslogtreecommitdiffstats
path: root/lib/Kconfig
blob: 46ec58c62e4af758a8d982f04adcd0a6a6c08912 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
menu "Library routines"
config PARAMETER
	bool

config UNCOMPRESS
	bool
	select FILETYPE

config ZLIB
	bool "include gzip uncompression support"
	select UNCOMPRESS

config BZLIB
	bool "include bzip2 uncompression support"
	select UNCOMPRESS

config LZ4_DECOMPRESS
	bool "include lz4 uncompression support"
	select UNCOMPRESS

config XZ_DECOMPRESS
	bool "include xz uncompression support"
	select UNCOMPRESS

config REED_SOLOMON
	bool

config GENERIC_FIND_NEXT_BIT
	def_bool n

config PROCESS_ESCAPE_SEQUENCE
	def_bool n

source lib/lzo/Kconfig

config BCH
	bool

config BITREV
	bool

config QSORT
	bool

config XYMODEM
	bool
	select CRC16

config LIBSCAN
	bool

config LIBUBIGEN
	bool

config LIBMTD
	bool

config STMP_DEVICE
	bool

source lib/gui/Kconfig

source lib/fonts/Kconfig

source lib/logo/Kconfig

source lib/bootstrap/Kconfig

config PRINTF_UUID
	bool

endmenu