summaryrefslogtreecommitdiffstats
path: root/lib/Kconfig
blob: 4e9213f3e5122d477fc22cb9b8316d1d1ba3f9ac (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
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 CRC16

config LIBSCAN
	bool

config LIBUBIGEN
	bool

config IMAGE_SPARSE
	bool

config STMP_DEVICE
	bool

config RATP
	select CRC16
	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.

source lib/gui/Kconfig

source lib/fonts/Kconfig

source lib/logo/Kconfig

source lib/bootstrap/Kconfig

config PRINTF_UUID
	bool

endmenu