mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 10:51:55 +00:00
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>
11 lines
179 B
Bash
11 lines
179 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
squashfs-tools-mksquashfs)
|
|
mksquashfs -version 2>&1 | grep -F "$2"
|
|
;;
|
|
squashfs-tools-unsquashfs)
|
|
unsquashfs -version 2>&1 | grep -F "$2"
|
|
;;
|
|
esac
|