kumquat-buildroot/package/squashfs/Config.in
Peter Korsgaard cbd5099271 squashfs: fix zlib dependency
The 'gzip' compression supports just needs zlib, and not the gzip package.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-02-19 20:46:50 +01:00

34 lines
735 B
Plaintext

config BR2_PACKAGE_SQUASHFS
bool "squashfs"
depends on BR2_LARGEFILE
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
endif
comment "squashfs requires a toolchain with LARGEFILE support"
depends on !BR2_LARGEFILE