194ac2d549
Readd legacy LZMA support since older patched kernels might be using it. Introduce an XZ target filesystem option for the new format. [Peter: add a seperate xz target for squashfs-target as well] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
41 lines
969 B
Plaintext
41 lines
969 B
Plaintext
config BR2_PACKAGE_SQUASHFS
|
|
bool "squashfs"
|
|
depends on BR2_LARGEFILE
|
|
select BR2_PACKAGE_SQUASHFS_GZIP if !(BR2_PACKAGE_SQUASHFS_LZMA || BR2_PACKAGE_SQUASHFS_LZO)
|
|
help
|
|
Tools to generate SquashFS filesystems.
|
|
|
|
http://squashfs.sourceforge.net/
|
|
|
|
if BR2_PACKAGE_SQUASHFS
|
|
|
|
config BR2_PACKAGE_SQUASHFS_GZIP
|
|
bool "gzip support"
|
|
default y
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
Support GZIP compression algorithm
|
|
|
|
config BR2_PACKAGE_SQUASHFS_LZMA
|
|
bool "lzma support"
|
|
select BR2_PACKAGE_XZ
|
|
help
|
|
Support LZMA compression algorithm
|
|
|
|
config BR2_PACKAGE_SQUASHFS_LZO
|
|
bool "lzo support"
|
|
select BR2_PACKAGE_LZO
|
|
help
|
|
Support LZO compression algorithm
|
|
|
|
config BR2_PACKAGE_SQUASHFS_XZ
|
|
bool "xz support"
|
|
select BR2_PACKAGE_XZ
|
|
help
|
|
Support XZ compression algorithm
|
|
|
|
endif
|
|
|
|
comment "squashfs requires a toolchain with LARGEFILE support"
|
|
depends on !BR2_LARGEFILE
|