-
Notifications
You must be signed in to change notification settings - Fork 602
/
Copy pathKconfig
44 lines (36 loc) · 1.02 KB
/
Kconfig
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
#
# For a description of the syntax of this configuration file,
# see kconfig-language at https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt
#
config COMPRESSION
bool "Compression library support"
default n
---help---
Add support for compression library.
if COMPRESSION
config COMPRESSION_TYPE
int "Compression Algorithm Type"
default 2
range 1 2
---help---
Enter compression type.
1 = LZMA
2 = MINIZ
endif # COMPRESSION
config COMPRESSED_BINARY
bool "Compressed binary support"
default n
depends on BINFMT_ENABLE
select COMPRESSION
---help---
If a compressed binary is to be loaded/executed
this config needs to be enabled. It adds support for
reading compressed binary.
if COMPRESSED_BINARY
config COMPRESSION_BLOCK_SIZE
int "Block size for binary compression"
default 16384
range 512 16384
---help---
Enter block size to use for compression of binary.
endif # COMPRESSED_BINARY