mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 19:23:03 +01:00
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>
28 lines
893 B
BlitzBasic
28 lines
893 B
BlitzBasic
SUMMARY = "Tools for erofs filesystems"
|
|
# liberofs also available under Apache 2.0
|
|
LICENSE = "GPL-2.0-or-later"
|
|
SECTION = "base"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=73001d804ea1e3d84365f652242cca20"
|
|
HOMEPAGE = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/tree/README"
|
|
|
|
SRCREV = "7bc147fafd53a2a9ff7c22399491079e5bfffafc"
|
|
SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git;branch=master;protocol=https"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>(\d+(\.\d+)+))"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS = "util-linux-libuuid"
|
|
|
|
inherit pkgconfig autotools
|
|
|
|
PACKAGECONFIG ??= "lz4 zlib"
|
|
PACKAGECONFIG[lz4] = "--enable-lz4,--disable-lz4,lz4"
|
|
PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib"
|
|
|
|
EXTRA_OECONF = "${PACKAGECONFIG_CONFARGS} --disable-fuse"
|
|
|
|
CFLAGS:append:powerpc64le = " -D__SANE_USERSPACE_TYPES__"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|