summaryrefslogtreecommitdiffstats
path: root/lib/Kconfig
blob: b0839e6c6e239a0faa487de3cd8051a4994e61fa (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
menu "Library routines"
config PARAMETER
	bool

config UNCOMPRESS
	bool
	select FILETYPE

config XXHASH
	bool

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 ZSTD_DECOMPRESS
	bool "include zstd uncompression support"
	select UNCOMPRESS
	select XXHASH

config XZ_DECOMPRESS
	bool "include xz uncompression support"
	select UNCOMPRESS
	select XZ_DEC_X86
	select XZ_DEC_POWERPC
	select XZ_DEC_IA64
	select XZ_DEC_ARM
	select XZ_DEC_ARMTHUMB
	select XZ_DEC_SPARC

config XZ_DEC_X86
        bool

config XZ_DEC_POWERPC
        bool

config XZ_DEC_IA64
        bool

config XZ_DEC_ARM
        bool

config XZ_DEC_ARMTHUMB
        bool

config XZ_DEC_SPARC
        bool

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 FNMATCH
	bool

config QSORT
	bool

config XYMODEM
	bool
	select CRC_ITU_T

config LIBSCAN
	bool

config LIBUBIGEN
	bool

config IMAGE_SPARSE
	bool

config STMP_DEVICE
	bool

config RATP
	select CRC_ITU_T
	bool "RATP protocol support"
	help
	  Reliable Asynchronous Transfer Protocol (RATP) is a protocol for reliably
	  transferring packets over serial links described in RFC916. This implementation
	  is used for controlling barebox over serial ports.

config ALLOW_PRNG_FALLBACK
	bool "Allow fallback to PRNG if HWRNG not available."
	help
	  WARNING: it is not secure!!

	  get_crypto_bytes() users like cmd_password relay on HWRNG. If HWRNG is not
	  available and this option is disabled, cmd_password will fail.
	  Enable it on your own risk.

config CRC_CCITT
	bool "CRC-CCITT functions"
	help
	  This option is provided for the case where no in-kernel-tree
	  modules require CRC-CCITT functions, but a module built outside
	  the kernel tree does. Such modules that use library CRC-CCITT
	  functions require M here.

config CRC8
        bool "CRC8 function"
	help
	  This option provides CRC8 function. Drivers may select this
	  when they need to do cyclic redundancy check according CRC8
	  algorithm. Module will be called crc8.

source lib/gui/Kconfig

source lib/fonts/Kconfig

source lib/logo/Kconfig

source lib/bootstrap/Kconfig

config PRINTF_UUID
	bool

config GENERIC_LIB_ASHLDI3
	bool

config GENERIC_LIB_ASHRDI3
	bool

config GENERIC_LIB_LSHRDI3
	bool

config GENERIC_LIB_MULDI3
	bool

config NLS
        bool "Native language support"

endmenu