mirror of
https://github.com/openwrt/packages.git
synced 2025-12-26 15:36:19 +04:00
This updates squashfs-tools to version 4.7 Tweaked build option flags. Need to backport patch from upstream to fix compiler error for pid_t type. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
35 lines
1023 B
Plaintext
35 lines
1023 B
Plaintext
config SQUASHFS_TOOLS_GZIP_SUPPORT
|
|
depends on PACKAGE_squashfs-tools-mksquashfs || PACKAGE_squashfs-tools-unsquashfs
|
|
bool "Enable GZIP support"
|
|
select PACKAGE_zlib
|
|
default y
|
|
|
|
config SQUASHFS_TOOLS_LZO_SUPPORT
|
|
depends on PACKAGE_squashfs-tools-mksquashfs || PACKAGE_squashfs-tools-unsquashfs
|
|
bool "Enable LZO support"
|
|
select PACKAGE_liblzo
|
|
default n
|
|
|
|
config SQUASHFS_TOOLS_LZ4_SUPPORT
|
|
depends on PACKAGE_squashfs-tools-mksquashfs || PACKAGE_squashfs-tools-unsquashfs
|
|
bool "Enable LZ4 support"
|
|
select PACKAGE_liblz4
|
|
default n
|
|
|
|
config SQUASHFS_TOOLS_XZ_SUPPORT
|
|
depends on PACKAGE_squashfs-tools-mksquashfs || PACKAGE_squashfs-tools-unsquashfs
|
|
bool "Enable XZ support"
|
|
select PACKAGE_liblzma
|
|
default y
|
|
|
|
config SQUASHFS_TOOLS_XZ_EXTENDED_SUPPORT
|
|
depends on SQUASHFS_TOOLS_XZ_SUPPORT
|
|
bool "Enable XZ extended support"
|
|
default y
|
|
|
|
config SQUASHFS_TOOLS_ZSTD_SUPPORT
|
|
depends on PACKAGE_squashfs-tools-mksquashfs || PACKAGE_squashfs-tools-unsquashfs
|
|
bool "Enable ZSTD support"
|
|
select PACKAGE_libzstd
|
|
default y
|