From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Tue, 14 Oct 2025 15:09:11 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1v8em7-007kOw-1w for lore@lore.pengutronix.de; Tue, 14 Oct 2025 15:09:11 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1v8em7-00072u-AG; Tue, 14 Oct 2025 15:09:11 +0200 Received: from dude04.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::ac]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1v8elw-00071m-U3; Tue, 14 Oct 2025 15:09:00 +0200 From: =?UTF-8?q?Sven=20P=C3=BCschel?= To: ptxdist@pengutronix.de Date: Tue, 14 Oct 2025 15:08:57 +0200 Message-ID: <20251014130859.1134829-1-s.pueschel@pengutronix.de> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH] squashfs-tools: version bump 4.6.1 -> 4.7.2 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: =?UTF-8?q?Sven=20P=C3=BCschel?= Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false 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 --- 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