Skip to content

Commit a01d2a9

Browse files
committed
squashfs-tools: bump to 4.7.5
Changes since 4.7.2: - Fix potential corruption in Squashfs filesystems containing sparse files - Fix pseudo file creation failures with large blocks of contiguous zeros - Fix duplicate file detection for files exceeding available buffer space - Add -numeric-owner option to mksquashfs/sqfstar - Fix segfault when using pseudo file root definitions with only Xattr metadata - Fix conflict between -offset and -stream options - Fix directory modification timestamp issues in pseudo file hierarchy - Fix -max-depth incorrectly marking empty directories as excluded Full release notes: https://github.com/plougher/squashfs-tools/releases/tag/4.7.5 Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
1 parent c59d9b2 commit a01d2a9

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

utils/squashfs-tools/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
include $(TOPDIR)/rules.mk
99

1010
PKG_NAME:=squashfs-tools
11-
PKG_VERSION:=4.7.2
11+
PKG_VERSION:=4.7.5
1212
PKG_RELEASE:=1
1313

1414
PKG_LICENSE:=GPL-2.0-only
@@ -18,7 +18,7 @@ PKG_CPE_ID:=cpe:/a:squashfs-tools_project:squashfs-tools
1818

1919
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
2020
PKG_SOURCE_URL:=https://codeload.github.com/plougher/squashfs-tools/tar.gz/${PKG_VERSION}?
21-
PKG_HASH:=4672b5c47d9418d3a5ae5b243defc6d9eae8275b9771022247c6a6082c815914
21+
PKG_HASH:=547b7b7f4d2e44bf91b6fc554664850c69563701deab9fd9cd7e21f694c88ea6
2222

2323
PKG_BUILD_PARALLEL:=1
2424
include $(INCLUDE_DIR)/package.mk

utils/squashfs-tools/test.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/sh
2+
3+
case "$1" in
4+
squashfs-tools-mksquashfs)
5+
mksquashfs -version 2>&1 | grep -F "$2"
6+
;;
7+
squashfs-tools-unsquashfs)
8+
unsquashfs -version 2>&1 | grep -F "$2"
9+
;;
10+
esac

0 commit comments

Comments
 (0)