Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. if XZ_DEC
  9. config XZ_DEC_X86
  10. bool "x86 BCJ filter decoder" if EXPERT
  11. default y
  12. select XZ_DEC_BCJ
  13. config XZ_DEC_POWERPC
  14. bool "PowerPC BCJ filter decoder" if EXPERT
  15. default y
  16. select XZ_DEC_BCJ
  17. config XZ_DEC_IA64
  18. bool "IA-64 BCJ filter decoder" if EXPERT
  19. default y
  20. select XZ_DEC_BCJ
  21. config XZ_DEC_ARM
  22. bool "ARM BCJ filter decoder" if EXPERT
  23. default y
  24. select XZ_DEC_BCJ
  25. config XZ_DEC_ARMTHUMB
  26. bool "ARM-Thumb BCJ filter decoder" if EXPERT
  27. default y
  28. select XZ_DEC_BCJ
  29. config XZ_DEC_SPARC
  30. bool "SPARC BCJ filter decoder" if EXPERT
  31. default y
  32. select XZ_DEC_BCJ
  33. endif
  34. config XZ_DEC_BCJ
  35. bool
  36. default n
  37. config XZ_DEC_TEST
  38. tristate "XZ decompressor tester"
  39. default n
  40. depends on XZ_DEC
  41. help
  42. This allows passing .xz files to the in-kernel XZ decoder via
  43. a character special file. It calculates CRC32 of the decompressed
  44. data and writes diagnostics to the system log.
  45. Unless you are developing the XZ decoder, you don't need this
  46. and should say N.