buildrootschalter/package/squashfs/Config.in
Thomas Petazzoni 40988f8242 squashfs: do not build on !MMU systems
Fixes:

  http://autobuild.buildroot.org/results/273/2738934fc23219a33fe1e07b3213b4e10266fc79//

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2014-04-18 10:34:09 +02:00

43 lines
964 B
Plaintext

config BR2_PACKAGE_SQUASHFS
bool "squashfs"
depends on BR2_LARGEFILE
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_MMU # fork()
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 needs a toolchain w/ largefile, threads"
depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS