squashfs-tools seems to have moved to GitHub. Therefore update the URL accordingly.
Version 4.7 enabled all compression methods by default [1]. Therefore simply disable them explicitly. https://github.com/plougher/squashfs-tools/releases/tag/4.7 https://github.com/plougher/squashfs-tools/releases/tag/4.7.1 https://github.com/plougher/squashfs-tools/releases/tag/4.7.2 [1] https://github.com/plougher/squashfs-tools/commit/fc71116d648b51525e8c29a31f56a1c510529458 Signed-off-by: Sven Püschel <[email protected]> --- rules/squashfs-tools.make | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/rules/squashfs-tools.make b/rules/squashfs-tools.make index 7fc696f32..e533d93bb 100644 --- a/rules/squashfs-tools.make +++ b/rules/squashfs-tools.make @@ -14,11 +14,11 @@ PACKAGES-$(PTXCONF_SQUASHFS_TOOLS) += squashfs-tools # # Paths and names # -SQUASHFS_TOOLS_VERSION := 4.6.1 -SQUASHFS_TOOLS_MD5 := db23a40fa0dc54b4d6d225fb20ee6555 -SQUASHFS_TOOLS := squashfs$(SQUASHFS_TOOLS_VERSION) +SQUASHFS_TOOLS_VERSION := 4.7.2 +SQUASHFS_TOOLS_MD5 := b02b324f74605f3569f7e10b913dda0d +SQUASHFS_TOOLS := squashfs-tools-$(SQUASHFS_TOOLS_VERSION) SQUASHFS_TOOLS_SUFFIX := tar.gz -SQUASHFS_TOOLS_URL := $(call ptx/mirror, SF, squashfs/$(SQUASHFS_TOOLS).$(SQUASHFS_TOOLS_SUFFIX)) +SQUASHFS_TOOLS_URL := https://github.com/plougher/squashfs-tools/releases/download/$(SQUASHFS_TOOLS_VERSION)/$(SQUASHFS_TOOLS).$(SQUASHFS_TOOLS_SUFFIX) SQUASHFS_TOOLS_SOURCE := $(SRCDIR)/$(SQUASHFS_TOOLS).$(SQUASHFS_TOOLS_SUFFIX) SQUASHFS_TOOLS_DIR := $(BUILDDIR)/$(SQUASHFS_TOOLS) SQUASHFS_TOOLS_SUBDIR := squashfs-tools @@ -32,6 +32,9 @@ SQUASHFS_TOOLS_LICENSE_FILES := \ SQUASHFS_TOOLS_MAKE_PAR := NO SQUASHFS_TOOLS_MAKE_ENV := \ + LZ4_SUPPORT=0 \ + LZO_SUPPORT=0 \ + XZ_SUPPORT=0 \ ZSTD_SUPPORT=$(call ptx/ifdef, PTXCONF_SQUASHFS_TOOLS_ZSTD_SUPPORT,1,0) \ $(CROSS_ENV) \ CONFIG=1 \ -- 2.47.3
