From b6e5565ebdbcbbd1d0f64d7517636ace056d0757 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Thu, 6 Jun 2024 17:06:05 +0800 Subject: composefs: upgrade 1.0.3 -> 1.0.4 Changelog: ========== - Added LCFS_MOUNT_FLAGS_TRY_VERITY/tryverity mount option to do best-effort fs-verity - Use the new loewerdir+ and datadir+ overlayfs mount options from linux 6.6 - mkcomposefs is now multi-threaded when computing digests and copying files - mkcomposefs now uses copy_file_range when copying files - Added some initial rust crates to handle composefs dump files - Added fuzz tests - Documentation updates - Fix some crashes and leaks - Improve error reporting - Fix build on various libc types and versions Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- .../recipes-support/composefs/composefs_1.0.3.bb | 33 ---------------------- .../recipes-support/composefs/composefs_1.0.4.bb | 33 ++++++++++++++++++++++ 2 files changed, 33 insertions(+), 33 deletions(-) delete mode 100644 meta-oe/recipes-support/composefs/composefs_1.0.3.bb create mode 100644 meta-oe/recipes-support/composefs/composefs_1.0.4.bb diff --git a/meta-oe/recipes-support/composefs/composefs_1.0.3.bb b/meta-oe/recipes-support/composefs/composefs_1.0.3.bb deleted file mode 100644 index 38fc8d2675..0000000000 --- a/meta-oe/recipes-support/composefs/composefs_1.0.3.bb +++ /dev/null @@ -1,33 +0,0 @@ -SUMMARY = "Tools to handle creating and mounting composefs images" -DESCRIPTION = "The composefs project combines several underlying Linux \ -features to provide a very flexible mechanism to support read-only mountable \ -filesystem trees, stacking on top of an underlying "lower" Linux filesystem." -HOMEPAGE = "https://github.com/containers/composefs" -LICENSE = "GPL-3.0-or-later & LGPL-2.0-or-later & Apache-2.0" -LIC_FILES_CHKSUM = "\ - file://BSD-2-Clause.txt;md5=121c8a0a8fa5961a26b7863034ebcce8 \ - file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ - file://COPYING.LESSERv3;md5=6a6a8e020838b23406c81b19c1d46df6 \ - file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c \ - file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504 \ - file://LICENSE.Apache-2.0;md5=3b83ef96387f14655fc854ddc3c6bd57 \ -" - -PV .= "+git${SRCPV}" -SRCREV = "ecef20c18c81943bd17b489ad1484f361b99c792" -SRC_URI = "git://github.com/containers/composefs.git;protocol=https;branch=main" - -S = "${WORKDIR}/git" - -inherit autotools pkgconfig - -DEPENDS = "openssl" - -EXTRA_OECONF += " \ - --disable-man \ - --without-fuse \ -" - -LDFLAGS:append:class-native = " -pthread" - -BBCLASSEXTEND = "native" diff --git a/meta-oe/recipes-support/composefs/composefs_1.0.4.bb b/meta-oe/recipes-support/composefs/composefs_1.0.4.bb new file mode 100644 index 0000000000..aaf33b40ec --- /dev/null +++ b/meta-oe/recipes-support/composefs/composefs_1.0.4.bb @@ -0,0 +1,33 @@ +SUMMARY = "Tools to handle creating and mounting composefs images" +DESCRIPTION = "The composefs project combines several underlying Linux \ +features to provide a very flexible mechanism to support read-only mountable \ +filesystem trees, stacking on top of an underlying "lower" Linux filesystem." +HOMEPAGE = "https://github.com/containers/composefs" +LICENSE = "GPL-3.0-or-later & LGPL-2.0-or-later & Apache-2.0" +LIC_FILES_CHKSUM = "\ + file://BSD-2-Clause.txt;md5=121c8a0a8fa5961a26b7863034ebcce8 \ + file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ + file://COPYING.LESSERv3;md5=6a6a8e020838b23406c81b19c1d46df6 \ + file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c \ + file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504 \ + file://LICENSE.Apache-2.0;md5=3b83ef96387f14655fc854ddc3c6bd57 \ +" + +PV .= "+git${SRCPV}" +SRCREV = "7623e4dc89f62ada5724d4e41d0a16d2671312f5" +SRC_URI = "git://github.com/containers/composefs.git;protocol=https;branch=main" + +S = "${WORKDIR}/git" + +inherit autotools pkgconfig + +DEPENDS = "openssl" + +EXTRA_OECONF += " \ + --disable-man \ + --without-fuse \ +" + +LDFLAGS:append:class-native = " -pthread" + +BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf