summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/erofs-utils/erofs-utils_1.8.5.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-02-18 15:39:06 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-02-18 22:53:44 +0000
commitd3e69d01d9a2b9e87a6ced676f3cc38b0b104c46 (patch)
tree9386be4a22efcae883ad67a4d07788102f1a40ca /meta/recipes-devtools/erofs-utils/erofs-utils_1.8.5.bb
parentc1c64980429b098468f30ea3561eeeb6f0120678 (diff)
downloadpoky-d3e69d01d9a2b9e87a6ced676f3cc38b0b104c46.tar.gz
erofs-utils: upgrade 1.8.4 -> 1.8.5
Changelog: ========== - (mkfs.erofs) Support '-Efragdedupe=inode' for multithreading; - (dump.erofs) Add '--cat' to show file contents (Juan Hernandez); - (mkfs.erofs) Fix inefficient fragment deduplication; - (fsck.erofs/erofsfuse) Introduce fragment cache; - (fsck.erofs) Preserve S{U,G}ID bits properly on extraction; - (mkfs.erofs, tarerofs) Align non-existent directories with their parents; - Several minor bugfixes. (From OE-Core rev: 73288647931cb498e15a1846a77fe02d2f1e75c5) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/erofs-utils/erofs-utils_1.8.5.bb')
-rw-r--r--meta/recipes-devtools/erofs-utils/erofs-utils_1.8.5.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-devtools/erofs-utils/erofs-utils_1.8.5.bb b/meta/recipes-devtools/erofs-utils/erofs-utils_1.8.5.bb
new file mode 100644
index 0000000000..54ead294fb
--- /dev/null
+++ b/meta/recipes-devtools/erofs-utils/erofs-utils_1.8.5.bb
@@ -0,0 +1,27 @@
1SUMMARY = "Tools for erofs filesystems"
2# liberofs also available under Apache 2.0
3LICENSE = "GPL-2.0-or-later"
4SECTION = "base"
5LIC_FILES_CHKSUM = "file://COPYING;md5=73001d804ea1e3d84365f652242cca20"
6HOMEPAGE = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/tree/README"
7
8SRCREV = "7bc147fafd53a2a9ff7c22399491079e5bfffafc"
9SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git;branch=master;protocol=https"
10
11UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>(\d+(\.\d+)+))"
12
13S = "${WORKDIR}/git"
14
15DEPENDS = "util-linux-libuuid"
16
17inherit pkgconfig autotools
18
19PACKAGECONFIG ??= "lz4 zlib"
20PACKAGECONFIG[lz4] = "--enable-lz4,--disable-lz4,lz4"
21PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib"
22
23EXTRA_OECONF = "${PACKAGECONFIG_CONFARGS} --disable-fuse"
24
25CFLAGS:append:powerpc64le = " -D__SANE_USERSPACE_TYPES__"
26
27BBCLASSEXTEND = "native nativesdk"