From: Wang Mingyu < wangmy@fujitsu.com>
To: openembedded-core@lists.openembedded.org
Cc: Wang Mingyu <wangmy@fujitsu.com>
Subject: [OE-core] [PATCH 02/40] barebox-tools: upgrade 2026.01.0 -> 2026.03.0
Date: Thu, 19 Mar 2026 18:12:54 +0800 [thread overview]
Message-ID: <20260319101332.2067-2-wangmy@fujitsu.com> (raw)
In-Reply-To: <20260319101332.2067-1-wangmy@fujitsu.com>
From: Wang Mingyu <wangmy@fujitsu.com>
0001-barebox-tools-fix-glibc-2.43-openat2-build.patch
removed since it's included in 2026.03.0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
meta/recipes-bsp/barebox/barebox-common.inc | 4 +-
meta/recipes-bsp/barebox/barebox-tools.bb | 2 -
...x-tools-fix-glibc-2.43-openat2-build.patch | 43 -------------------
3 files changed, 2 insertions(+), 47 deletions(-)
delete mode 100644 meta/recipes-bsp/barebox/files/0001-barebox-tools-fix-glibc-2.43-openat2-build.patch
diff --git a/meta/recipes-bsp/barebox/barebox-common.inc b/meta/recipes-bsp/barebox/barebox-common.inc
index 14a5ca9709..17cfc25692 100644
--- a/meta/recipes-bsp/barebox/barebox-common.inc
+++ b/meta/recipes-bsp/barebox/barebox-common.inc
@@ -3,6 +3,6 @@ SECTION = "bootloaders"
LIC_FILES_CHKSUM = "file://COPYING;md5=f5125d13e000b9ca1f0d3364286c4192"
-PV = "2026.01.0"
+PV = "2026.03.0"
SRC_URI = "https://barebox.org/download/barebox-${PV}.tar.bz2"
-SRC_URI[sha256sum] = "219283d67c5d2f79bd22915b8a71906531223cb01e6e5b8d1658f299441e4169"
+SRC_URI[sha256sum] = "760f22ff34ca00539d29826cce07d83210e41ebb51266616c6969b855c099bc2"
diff --git a/meta/recipes-bsp/barebox/barebox-tools.bb b/meta/recipes-bsp/barebox/barebox-tools.bb
index 1459f48db2..eb327306d9 100644
--- a/meta/recipes-bsp/barebox/barebox-tools.bb
+++ b/meta/recipes-bsp/barebox/barebox-tools.bb
@@ -2,8 +2,6 @@ SUMMARY = "barebox bootloader tools"
require barebox-common.inc
-SRC_URI += "file://0001-barebox-tools-fix-glibc-2.43-openat2-build.patch"
-
LICENSE = "GPL-2.0-only"
DEPENDS = "bison-native flex-native libusb1"
diff --git a/meta/recipes-bsp/barebox/files/0001-barebox-tools-fix-glibc-2.43-openat2-build.patch b/meta/recipes-bsp/barebox/files/0001-barebox-tools-fix-glibc-2.43-openat2-build.patch
deleted file mode 100644
index 2ff7cb82a6..0000000000
--- a/meta/recipes-bsp/barebox/files/0001-barebox-tools-fix-glibc-2.43-openat2-build.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-barebox-tools: fix build failure with glibc 2.43
-
-glibc 2.43 introduces linux/openat2.h through the fcntl include chain
-(bits/fcntl-linux.h -> linux/openat2.h). This header expects the
-__u64 type to be defined before inclusion.
-
-In barebox scripts/include/linux/types.h the header <fcntl.h> was
-included before the __u64 typedef, causing build failures such as:
-
- linux/openat2.h:20:9: error: unknown type name '__u64'
-
-Move the inclusion of <fcntl.h> after the typedef definitions so that
-__u64 and related types are defined before linux/openat2.h is parsed.
-
-Upstream-Status: Pending
-
-Signed-off-by: Hemanth Kumar M D <Hemanth.KumarMD@windriver.com>
----
-
- scripts/include/linux/types.h | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/scripts/include/linux/types.h b/scripts/include/linux/types.h
-index 5b01333..33cea19 100644
---- a/scripts/include/linux/types.h
-+++ b/scripts/include/linux/types.h
-@@ -4,7 +4,6 @@
- #include <stdbool.h>
- #include <stddef.h>
- #include <stdint.h>
--#include <fcntl.h>
-
- typedef uint64_t __u64;
- typedef int64_t __s64;
-@@ -15,6 +14,8 @@ typedef int16_t __s16;
- typedef uint8_t __u8;
- typedef int8_t __s8;
-
-+#include <fcntl.h>
-+
- #ifndef __linux__
- typedef long long loff_t;
- #endif
--
2.43.0
next prev parent reply other threads:[~2026-03-19 10:15 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-19 10:12 [OE-core] [PATCH 01/40] at-spi2-core: upgrade 2.58.3 -> 2.60.0 Wang Mingyu
2026-03-19 10:12 ` Wang Mingyu [this message]
2026-03-19 10:12 ` [OE-core] [PATCH 03/40] bind: upgrade 9.20.18 -> 9.20.20 Wang Mingyu
2026-03-19 10:12 ` [OE-core] [PATCH 04/40] diffoscope: upgrade 313 -> 314 Wang Mingyu
2026-03-19 10:12 ` [OE-core] [PATCH 05/40] dpkg: upgrade 1.23.5 -> 1.23.7 Wang Mingyu
2026-03-19 10:12 ` [OE-core] [PATCH 06/40] e2fsprogs: upgrade 1.47.3 -> 1.47.4 Wang Mingyu
2026-03-19 10:12 ` [OE-core] [PATCH 07/40] ell: upgrade 0.82 -> 0.83 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 08/40] erofs-utils: upgrade 1.8.10 -> 1.9.1 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 09/40] ethtool: upgrade 6.15 -> 6.19 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 10/40] fastfloat: upgrade 8.2.3 -> 8.2.4 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 11/40] gsettings-desktop-schemas: upgrade 49.1 -> 50.0 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 12/40] harfbuzz: upgrade 12.3.2 -> 13.1.1 Wang Mingyu
2026-03-23 17:27 ` Ross Burton
2026-03-19 10:13 ` [OE-core] [PATCH 13/40] hwdata: upgrade 0.404 -> 0.405 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 14/40] hwlatdetect: upgrade 2.9 -> 2.10 Wang Mingyu
2026-03-19 19:49 ` Mathieu Dubois-Briand
2026-03-19 10:13 ` [OE-core] [PATCH 15/40] libgcrypt: upgrade 1.12.0 -> 1.12.1 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 16/40] libpciaccess: upgrade 0.18.1 -> 0.19 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 17/40] lsof: upgrade 4.99.5 -> 4.99.6 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 18/40] lttng-modules: upgrade 2.14.3 -> 2.15.0 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 19/40] lttng-ust: upgrade 2.14.0 " Wang Mingyu
2026-03-19 13:41 ` Mathieu Dubois-Briand
2026-03-23 3:43 ` Wang, Mingyu/王 鸣瑜
2026-03-19 10:13 ` [OE-core] [PATCH 20/40] lzlib: upgrade 1.15 -> 1.16 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 21/40] mesa: upgrade 26.0.1 -> 26.0.2 Wang Mingyu
2026-03-23 10:26 ` Böszörményi Zoltán
2026-03-19 10:13 ` [OE-core] [PATCH 22/40] meson: upgrade 1.10.1 -> 1.10.2 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 23/40] nfs-utils: upgrade 2.8.5 -> 2.8.7 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 24/40] openssl: upgrade 3.5.5 -> 3.6.1 Wang Mingyu
2026-03-19 11:20 ` Marko, Peter (FT D EU SK BFS1)
2026-03-19 10:13 ` [OE-core] [PATCH 25/40] python3-numpy: upgrade 2.4.2 -> 2.4.3 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 26/40] python3-pygobject: upgrade 3.54.5 -> 3.56.1 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 27/40] python3-pyopenssl: upgrade 25.3.0 -> 26.0.0 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 28/40] python3-pytz: upgrade 2025.2 -> 2026.1 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 29/40] python3-setuptools: upgrade 82.0.0 -> 82.0.1 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 30/40] python3-shacl2code: upgrade 0.0.24 -> 1.0.0 Wang Mingyu
2026-03-19 19:57 ` Mathieu Dubois-Briand
2026-03-19 20:01 ` Mathieu Dubois-Briand
2026-03-19 10:13 ` [OE-core] [PATCH 31/40] python3-sphinxcontrib-svg2pdfconverter: upgrade 2.0.0 -> 2.1.0 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 32/40] python3-testtools: upgrade 2.8.3 -> 2.8.7 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 33/40] python3-uv-build: upgrade 0.10.4 -> 0.10.10 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 34/40] python3-xmltodict: upgrade 1.0.3 -> 1.0.4 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 35/40] seatd: upgrade 0.9.2 -> 0.9.3 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 36/40] sqlite3: upgrade 3.51.2 -> 3.51.3 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 37/40] squashfs-tools: upgrade 4.7.4 -> 4.7.5 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 38/40] stress-ng: upgrade 0.20.00 -> 0.20.01 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 39/40] taglib: upgrade 2.2 -> 2.2.1 Wang Mingyu
2026-03-19 10:13 ` [OE-core] [PATCH 40/40] xkeyboard-config: upgrade 2.46 -> 2.47 Wang Mingyu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260319101332.2067-2-wangmy@fujitsu.com \
--to=wangmy@fujitsu.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox