diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2025-02-18 15:39:06 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-18 22:53:44 +0000 |
commit | d3e69d01d9a2b9e87a6ced676f3cc38b0b104c46 (patch) | |
tree | 9386be4a22efcae883ad67a4d07788102f1a40ca /meta/recipes-devtools/erofs-utils/erofs-utils_1.8.5.bb | |
parent | c1c64980429b098468f30ea3561eeeb6f0120678 (diff) | |
download | poky-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.bb | 27 |
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 @@ | |||
1 | SUMMARY = "Tools for erofs filesystems" | ||
2 | # liberofs also available under Apache 2.0 | ||
3 | LICENSE = "GPL-2.0-or-later" | ||
4 | SECTION = "base" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=73001d804ea1e3d84365f652242cca20" | ||
6 | HOMEPAGE = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/tree/README" | ||
7 | |||
8 | SRCREV = "7bc147fafd53a2a9ff7c22399491079e5bfffafc" | ||
9 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git;branch=master;protocol=https" | ||
10 | |||
11 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>(\d+(\.\d+)+))" | ||
12 | |||
13 | S = "${WORKDIR}/git" | ||
14 | |||
15 | DEPENDS = "util-linux-libuuid" | ||
16 | |||
17 | inherit pkgconfig autotools | ||
18 | |||
19 | PACKAGECONFIG ??= "lz4 zlib" | ||
20 | PACKAGECONFIG[lz4] = "--enable-lz4,--disable-lz4,lz4" | ||
21 | PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib" | ||
22 | |||
23 | EXTRA_OECONF = "${PACKAGECONFIG_CONFARGS} --disable-fuse" | ||
24 | |||
25 | CFLAGS:append:powerpc64le = " -D__SANE_USERSPACE_TYPES__" | ||
26 | |||
27 | BBCLASSEXTEND = "native nativesdk" | ||