squashfs-tools: change default compression options to n
Otherwise it will pull all compression libraries to install (on newly configured targets) when maybe 1 or 2 are needed. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
This commit is contained in:
parent
4288540e49
commit
dcd86b9f47
2 changed files with 4 additions and 4 deletions
|
@ -2,16 +2,16 @@ config SQUASHFS_TOOLS_LZO_SUPPORT
|
|||
depends on PACKAGE_squashfs-tools-mksquashfs || PACKAGE_squashfs-tools-unsquashfs
|
||||
bool "Enable LZO support"
|
||||
select PACKAGE_liblzo
|
||||
default y
|
||||
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 y
|
||||
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
|
||||
default n
|
||||
|
|
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=squashfs-tools
|
||||
PKG_VERSION:=4.3
|
||||
PKG_RELEASE:=2
|
||||
PKG_RELEASE:=3
|
||||
PKG_LICENSE:=GPL-2.0
|
||||
PKG_LICENSE_FILES:=COPYING
|
||||
|
||||
|
|
Loading…
Reference in a new issue