]>
Commit | Line | Data |
---|---|---|
24fa0402 LC |
1 | config XZ_DEC |
2 | tristate "XZ decompression support" | |
3 | select CRC32 | |
4 | help | |
5 | LZMA2 compression algorithm and BCJ filters are supported using | |
6 | the .xz file format as the container. For integrity checking, | |
7 | CRC32 is supported. See Documentation/xz.txt for more information. | |
8 | ||
9d749629 FF |
9 | if XZ_DEC |
10 | ||
24fa0402 | 11 | config XZ_DEC_X86 |
bf4d064d LC |
12 | bool "x86 BCJ filter decoder" if EXPERT |
13 | default y | |
24fa0402 LC |
14 | select XZ_DEC_BCJ |
15 | ||
16 | config XZ_DEC_POWERPC | |
bf4d064d LC |
17 | bool "PowerPC BCJ filter decoder" if EXPERT |
18 | default y | |
24fa0402 LC |
19 | select XZ_DEC_BCJ |
20 | ||
21 | config XZ_DEC_IA64 | |
bf4d064d LC |
22 | bool "IA-64 BCJ filter decoder" if EXPERT |
23 | default y | |
24fa0402 LC |
24 | select XZ_DEC_BCJ |
25 | ||
26 | config XZ_DEC_ARM | |
bf4d064d LC |
27 | bool "ARM BCJ filter decoder" if EXPERT |
28 | default y | |
24fa0402 LC |
29 | select XZ_DEC_BCJ |
30 | ||
31 | config XZ_DEC_ARMTHUMB | |
bf4d064d LC |
32 | bool "ARM-Thumb BCJ filter decoder" if EXPERT |
33 | default y | |
24fa0402 LC |
34 | select XZ_DEC_BCJ |
35 | ||
36 | config XZ_DEC_SPARC | |
bf4d064d LC |
37 | bool "SPARC BCJ filter decoder" if EXPERT |
38 | default y | |
24fa0402 LC |
39 | select XZ_DEC_BCJ |
40 | ||
9d749629 FF |
41 | endif |
42 | ||
24fa0402 LC |
43 | config XZ_DEC_BCJ |
44 | bool | |
45 | default n | |
46 | ||
47 | config XZ_DEC_TEST | |
48 | tristate "XZ decompressor tester" | |
49 | default n | |
50 | depends on XZ_DEC | |
51 | help | |
52 | This allows passing .xz files to the in-kernel XZ decoder via | |
53 | a character special file. It calculates CRC32 of the decompressed | |
54 | data and writes diagnostics to the system log. | |
55 | ||
56 | Unless you are developing the XZ decoder, you don't need this | |
57 | and should say N. |