2010-03-02 00:14:33 +01:00
|
|
|
config BR2_PACKAGE_SQUASHFS
|
|
|
|
bool "squashfs"
|
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()
|
2018-12-07 14:13:55 +01:00
|
|
|
# ensure at least on compression backend (defaults to gzip)
|
|
|
|
select BR2_PACKAGE_SQUASHFS_GZIP if !( \
|
|
|
|
BR2_PACKAGE_SQUASHFS_LZ4 || \
|
|
|
|
BR2_PACKAGE_SQUASHFS_LZMA || \
|
|
|
|
BR2_PACKAGE_SQUASHFS_LZO || \
|
|
|
|
BR2_PACKAGE_SQUASHFS_XZ || \
|
|
|
|
BR2_PACKAGE_SQUASHFS_ZSTD)
|
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
|
|
|
|
2014-05-15 23:31:35 +02:00
|
|
|
config BR2_PACKAGE_SQUASHFS_LZ4
|
|
|
|
bool "lz4 support"
|
|
|
|
select BR2_PACKAGE_LZ4
|
|
|
|
help
|
|
|
|
Support LZ4 compression algorithm
|
|
|
|
|
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
|
|
|
|
2018-04-16 21:39:53 +02:00
|
|
|
config BR2_PACKAGE_SQUASHFS_ZSTD
|
|
|
|
bool "zstd support"
|
|
|
|
select BR2_PACKAGE_ZSTD
|
|
|
|
help
|
|
|
|
Support ZSTD compression algorithm
|
|
|
|
|
2010-09-20 16:19:26 +02:00
|
|
|
endif
|
|
|
|
|
2015-03-30 23:07:30 +02:00
|
|
|
comment "squashfs needs a toolchain w/ threads"
|
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
2014-08-04 15:20:37 +02:00
|
|
|
depends on BR2_USE_MMU
|