1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-13 10:59:13 +02:00
openwrt-packages/utils/squashfs-tools/Config.in
Daniel Golle 94e1ae9b79 squashfs-tools: build with xz by default
squashfs-tools aren't of much use without xz compression support
on OpenWrt, as we build kernel with squashfs supporting only xz.
Enabled support for xz compression by default.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-06-13 22:39:14 +01:00

24 lines
717 B
Plaintext

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_ZSTD_SUPPORT
depends on PACKAGE_squashfs-tools-mksquashfs || PACKAGE_squashfs-tools-unsquashfs
bool "Enable ZSTD support"
select PACKAGE_libzstd
default n