2010-03-02 00:14:33 +01:00
|
|
|
config BR2_PACKAGE_SQUASHFS
|
|
|
|
bool "squashfs"
|
2010-05-26 22:17:52 +02:00
|
|
|
depends on BR2_LARGEFILE
|
2012-06-11 09:14:48 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2014-04-18 10:34:09 +02:00
|
|
|
depends on BR2_USE_MMU # fork()
|
2011-02-25 21:27:40 +01:00
|
|
|
select BR2_PACKAGE_SQUASHFS_GZIP if !(BR2_PACKAGE_SQUASHFS_LZMA || BR2_PACKAGE_SQUASHFS_LZO)
|
2010-03-02 00:14:33 +01:00
|
|
|
help
|
|
|
|
Tools to generate SquashFS filesystems.
|
|
|
|
|
|
|
|
http://squashfs.sourceforge.net/
|
2010-05-26 22:17:52 +02:00
|
|
|
|
2010-09-20 16:19:26 +02:00
|
|
|
if BR2_PACKAGE_SQUASHFS
|
|
|
|
|
|
|
|
config BR2_PACKAGE_SQUASHFS_GZIP
|
2013-11-11 17:23:23 +01:00
|
|
|
bool "gzip support"
|
|
|
|
default y
|
|
|
|
select BR2_PACKAGE_ZLIB
|
|
|
|
help
|
|
|
|
Support GZIP compression algorithm
|
2010-09-20 16:19:26 +02:00
|
|
|
|
2010-09-20 22:05:39 +02:00
|
|
|
config BR2_PACKAGE_SQUASHFS_LZMA
|
2013-11-11 17:23:23 +01:00
|
|
|
bool "lzma support"
|
|
|
|
select BR2_PACKAGE_XZ
|
|
|
|
help
|
|
|
|
Support LZMA compression algorithm
|
2010-09-20 22:05:39 +02:00
|
|
|
|
2010-09-20 16:19:26 +02:00
|
|
|
config BR2_PACKAGE_SQUASHFS_LZO
|
2013-11-11 17:23:23 +01:00
|
|
|
bool "lzo support"
|
|
|
|
select BR2_PACKAGE_LZO
|
|
|
|
help
|
|
|
|
Support LZO compression algorithm
|
2010-09-20 16:19:26 +02:00
|
|
|
|
2011-03-04 15:10:14 +01:00
|
|
|
config BR2_PACKAGE_SQUASHFS_XZ
|
2013-11-11 17:23:23 +01:00
|
|
|
bool "xz support"
|
|
|
|
select BR2_PACKAGE_XZ
|
|
|
|
help
|
|
|
|
Support XZ compression algorithm
|
2011-03-04 15:10:14 +01:00
|
|
|
|
2010-09-20 16:19:26 +02:00
|
|
|
endif
|
|
|
|
|
2013-10-13 16:55:32 +02:00
|
|
|
comment "squashfs needs a toolchain w/ largefile, threads"
|
2012-06-11 09:14:48 +02:00
|
|
|
depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
|