openembedded-devel.lists.openembedded.org archive mirror
 help / color / mirror / Atom feed
* [meta-filesystem][PATCH 1/3] zfs: Upgrade to 2.2.8 release
@ 2025-08-27  2:48 Khem Raj
  2025-08-27  2:48 ` [meta-oe][PATCH 2/3] vboxguestdrivers: Upgrade to 7.2.0 Khem Raj
  2025-08-27  2:49 ` [meta-oe][PATCH 3/3] hiredis: Build vendored hdr_histogram fpconv Khem Raj
  0 siblings, 2 replies; 3+ messages in thread
From: Khem Raj @ 2025-08-27  2:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../recipes-filesystems/zfs/{zfs_2.2.5.bb => zfs_2.2.8.bb}      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-filesystems/recipes-filesystems/zfs/{zfs_2.2.5.bb => zfs_2.2.8.bb} (98%)

diff --git a/meta-filesystems/recipes-filesystems/zfs/zfs_2.2.5.bb b/meta-filesystems/recipes-filesystems/zfs/zfs_2.2.8.bb
similarity index 98%
rename from meta-filesystems/recipes-filesystems/zfs/zfs_2.2.5.bb
rename to meta-filesystems/recipes-filesystems/zfs/zfs_2.2.8.bb
index cf56cca84c..1fc1457b19 100644
--- a/meta-filesystems/recipes-filesystems/zfs/zfs_2.2.5.bb
+++ b/meta-filesystems/recipes-filesystems/zfs/zfs_2.2.8.bb
@@ -4,7 +4,7 @@ LICENSE = "CDDL-1.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=7087caaf1dc8a2856585619f4a787faa"
 HOMEPAGE = "https://github.com/openzfs/zfs"
 
-SRCREV = "33174af15112ed5c53299da2d28e763b0163f428"
+SRCREV = "3e4a3e161c00273303cd9fa9e0dc09ead3499a8a"
 SRC_URI = "git://github.com/openzfs/zfs;protocol=https;branch=zfs-2.2-release \
            file://0001-Define-strndupa-if-it-does-not-exist.patch \
            file://aaf28a4630af60496c9d33db1d06a7d7d8983422.patch \


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-oe][PATCH 2/3] vboxguestdrivers: Upgrade to 7.2.0
  2025-08-27  2:48 [meta-filesystem][PATCH 1/3] zfs: Upgrade to 2.2.8 release Khem Raj
@ 2025-08-27  2:48 ` Khem Raj
  2025-08-27  2:49 ` [meta-oe][PATCH 3/3] hiredis: Build vendored hdr_histogram fpconv Khem Raj
  1 sibling, 0 replies; 3+ messages in thread
From: Khem Raj @ 2025-08-27  2:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

Drop c23 std compile time fix, its already upstream

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 ...x-bool-reserved-word-error-in-gcc-15.patch | 28 -------------------
 ...rs_7.1.12.bb => vboxguestdrivers_7.2.0.bb} |  4 +--
 2 files changed, 1 insertion(+), 31 deletions(-)
 delete mode 100644 meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers/0001-fix-bool-reserved-word-error-in-gcc-15.patch
 rename meta-oe/recipes-support/vboxguestdrivers/{vboxguestdrivers_7.1.12.bb => vboxguestdrivers_7.2.0.bb} (96%)

diff --git a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers/0001-fix-bool-reserved-word-error-in-gcc-15.patch b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers/0001-fix-bool-reserved-word-error-in-gcc-15.patch
deleted file mode 100644
index ec75d5a423..0000000000
--- a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers/0001-fix-bool-reserved-word-error-in-gcc-15.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 76c443dfd209ddbed3ed4102596a568670d4c59f Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Thu, 1 May 2025 20:16:11 -0700
-Subject: [PATCH] fix bool reserved word error in gcc 15
-
-gcc-15 switched to -std=c23 by default. https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=55e3bd376b2214e200fa76d12b67ff259b06c212
-
-Upstream-Status: Submitted [https://www.virtualbox.org/pipermail/vbox-dev/2025-May/010316.html]
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- vboxsf/include/iprt/types.h | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/vboxsf/include/iprt/types.h b/vboxsf/include/iprt/types.h
-index 3bcc4146..33b46ef6 100644
---- a/vboxsf/include/iprt/types.h
-+++ b/vboxsf/include/iprt/types.h
-@@ -282,7 +282,9 @@ typedef _Bool bool;
- #   endif
- #  else
- #   undef bool /* see above netbsd explanation */
--typedef _Bool bool;
-+#   if defined __STDC__ && defined __STDC_VERSION__ && __STDC_VERSION__ <= 201710L
-+     typedef _Bool bool;
-+#   endif
- #  endif
- # else
- #  if RT_MSC_PREREQ(RT_MSC_VER_VC120)
diff --git a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.1.12.bb b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.2.0.bb
similarity index 96%
rename from meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.1.12.bb
rename to meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.2.0.bb
index e80f44833b..31f7b01aae 100644
--- a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.1.12.bb
+++ b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.2.0.bb
@@ -13,10 +13,8 @@ VBOX_NAME = "VirtualBox-${PV}"
 
 SRC_URI = "http://download.virtualbox.org/virtualbox/${PV}/${VBOX_NAME}.tar.bz2 \
     file://Makefile.utils \
-    file://0001-fix-bool-reserved-word-error-in-gcc-15.patch \
 "
-
-SRC_URI[sha256sum] = "6f9618f39168898134975f51df7c2d6d5129c0aa82b6ae11cf47f920c70df276"
+SRC_URI[sha256sum] = "4f2804ff27848ea772aee6b637bb1e10ee74ec2da117c257413e2d2c4f670ba0"
 
 S ?= "${UNPACKDIR}/vbox_module"
 S:task-unpack = "${UNPACKDIR}/${VBOX_NAME}"


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-oe][PATCH 3/3] hiredis: Build vendored hdr_histogram fpconv
  2025-08-27  2:48 [meta-filesystem][PATCH 1/3] zfs: Upgrade to 2.2.8 release Khem Raj
  2025-08-27  2:48 ` [meta-oe][PATCH 2/3] vboxguestdrivers: Upgrade to 7.2.0 Khem Raj
@ 2025-08-27  2:49 ` Khem Raj
  1 sibling, 0 replies; 3+ messages in thread
From: Khem Raj @ 2025-08-27  2:49 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

This fixes a build race which is seen with high parallel builds ( -j 80)

Fixes
aarch64-yoe-linux-clang: error: no such file or directory: '../deps/hdr_histogram/libhdrhistogram.a'
aarch64-yoe-linux-clang: error: no such file or directory: '../deps/hdr_histogram/libhdrhistogram.a'
aarch64-yoe-linux-clang: error: no such file or directory: '../deps/fpconv/libfpconv.a'
make[1]: *** [Makefile:431: redis-benchmark] Error 1
make[1]: *** Waiting for unfinished jobs....
make[1]: *** [Makefile:407: redis-server] Error 1

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-oe/recipes-extended/redis/redis_7.2.10.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-extended/redis/redis_7.2.10.bb b/meta-oe/recipes-extended/redis/redis_7.2.10.bb
index ecdb39c6f3..f15e07191d 100644
--- a/meta-oe/recipes-extended/redis/redis_7.2.10.bb
+++ b/meta-oe/recipes-extended/redis/redis_7.2.10.bb
@@ -41,7 +41,7 @@ PACKAGECONFIG[systemd] = "USE_SYSTEMD=yes,USE_SYSTEMD=no,systemd"
 EXTRA_OEMAKE += "${PACKAGECONFIG_CONFARGS}"
 
 do_compile:prepend() {
-    oe_runmake -C deps hiredis lua linenoise
+    oe_runmake -C deps hdr_histogram fpconv hiredis lua linenoise
 }
 
 do_install() {


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-08-27  2:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-27  2:48 [meta-filesystem][PATCH 1/3] zfs: Upgrade to 2.2.8 release Khem Raj
2025-08-27  2:48 ` [meta-oe][PATCH 2/3] vboxguestdrivers: Upgrade to 7.2.0 Khem Raj
2025-08-27  2:49 ` [meta-oe][PATCH 3/3] hiredis: Build vendored hdr_histogram fpconv Khem Raj

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).