Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe(s) *pseudo* to *1.9.11* has Failed(do_compile).
Detailed error information:
do_compile failed
Next steps:
- apply the patch: git am 0001-pseudo-upgrade-1.9.10-1.9.11.patch
- check the changes to upstream patches and summarize them in the commit
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list
Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.
Please review the attached files for further information and build/update
failures.
Any problem please file a bug at
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler
Regards,
The Upgrade Helper
-- >8 --
>From ef120ea7b26559ea9586e85669306b3c3a86e761 Mon Sep 17 00:00:00 2001
From: Upgrade Helper <[email protected]>
Date: Thu, 6 Aug 2026 05:31:01 +0000
Subject: [PATCH] pseudo: upgrade 1.9.10 -> 1.9.11
ba8887e Makefile.in: Bump to 1.9.11
22bdf20 tests: Add close_range() test
f85e2ae ports/linux/guts: Implement close_range() instead of returning ENOSYS
---
.../pseudo/files/older-glibc-symbols.patch | 57 -------------------
meta/recipes-devtools/pseudo/pseudo_git.bb | 5 +-
2 files changed, 3 insertions(+), 59 deletions(-)
delete mode 100644 meta/recipes-devtools/pseudo/files/older-glibc-symbols.patch
diff --git a/meta/recipes-devtools/pseudo/files/older-glibc-symbols.patch
b/meta/recipes-devtools/pseudo/files/older-glibc-symbols.patch
deleted file mode 100644
index f42b32b8d9..0000000000
--- a/meta/recipes-devtools/pseudo/files/older-glibc-symbols.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-If we link against a newer glibc 2.34 and then try and our LD_PRELOAD is run
against a
-binary on a host with an older libc, we see symbol errors since in glibc 2.34,
pthread
-and dl are merged into libc itself.
-
-We need to use the older form of linking so use glibc binaries from an older
release
-to force this. We only use minimal symbols from these anyway.
-
-pthread_atfork is problematic, particularly on arm so use the internal glibc
routine
-it maps too. This was always present in the main libc from 2.3.2 onwards.
-
-Yes this is horrible. Better solutions welcome.
-
-There is more info in the bug: [YOCTO #14521]
-
-Upstream-Status: Inappropriate [this patch is native and nativesdk]
-Signed-off-by: Richard Purdie <[email protected]>
-
-Tweak library search order, make prebuilt lib ahead of recipe lib
-Signed-off-by: Hongxu Jia <[email protected]>
----
- Makefile.in | 2 +-
- pseudo_wrappers.c | 5 ++++-
- 2 files changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile.in b/Makefile.in
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -120,7 +120,7 @@ $(PSEUDODB): pseudodb.o $(SHOBJS) $(DBOBJS) pseudo_ipc.o |
$(BIN)
- libpseudo: $(LIBPSEUDO)
-
- $(LIBPSEUDO): $(WRAPOBJS) pseudo_client.o pseudo_client_scanf.o pseudo_ipc.o
$(SHOBJS) | $(LIB)
-- $(CC) $(CFLAGS) $(CFLAGS_PSEUDO) -shared -o $(LIBPSEUDO) \
-+ $(CC) $(CFLAGS) -Lprebuilt/$(shell uname -m)-linux/lib/
$(CFLAGS_PSEUDO) -shared -o $(LIBPSEUDO) \
- pseudo_client.o pseudo_client_scanf.o pseudo_ipc.o \
- $(WRAPOBJS) $(SHOBJS) $(LDFLAGS) $(CLIENT_LDFLAGS)
-
-diff --git a/pseudo_wrappers.c b/pseudo_wrappers.c
---- a/pseudo_wrappers.c
-+++ b/pseudo_wrappers.c
-@@ -100,10 +100,13 @@ static void libpseudo_atfork_child(void)
- pseudo_mutex_holder = 0;
- }
-
-+extern void *__dso_handle;
-+extern int __register_atfork (void (*) (void), void (*) (void), void (*)
(void), void *);
-+
- static void
- _libpseudo_init(void) {
- if (!_libpseudo_initted)
-- pthread_atfork(NULL, NULL, libpseudo_atfork_child);
-+ __register_atfork (NULL, NULL, libpseudo_atfork_child,
&__dso_handle == NULL ? NULL : __dso_handle);
-
- pseudo_getlock();
- pseudo_antimagic();
---
-2.27.0
-
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb
b/meta/recipes-devtools/pseudo/pseudo_git.bb
index d0559f6c9f..0650d7b7c2 100644
--- a/meta/recipes-devtools/pseudo/pseudo_git.bb
+++ b/meta/recipes-devtools/pseudo/pseudo_git.bb
@@ -3,6 +3,7 @@ require pseudo.inc
SRC_URI =
"git://git.yoctoproject.org/pseudo;branch=master;protocol=https;tag=pseudo-${PV}
\
file://fallback-passwd \
file://fallback-group \
+
http://downloads.yoctoproject.org/mirror/sources/pseudo-prebuilt-2.33.tar.xz;subdir=${BB_GIT_DEFAULT_DESTSUFFIX}/prebuilt;name=prebuilt
\
"
SRC_URI:append:class-native = " \
http://downloads.yoctoproject.org/mirror/sources/pseudo-prebuilt-2.33.tar.xz;subdir=${BB_GIT_DEFAULT_DESTSUFFIX}/prebuilt;name=prebuilt
\
@@ -12,8 +13,8 @@ SRC_URI:append:class-nativesdk = " \
file://older-glibc-symbols.patch"
SRC_URI[prebuilt.sha256sum] =
"ed9f456856e9d86359f169f46a70ad7be4190d6040282b84c8d97b99072485aa"
-SRCREV = "2a5521e9573049864e07907415f1fee28232d90c"
-PV = "1.9.10"
+SRCREV = "4d350864771c15986d86a3ba9e3d8d79264f42ac"
+PV = "1.9.11"
# largefile and 64bit time_t support adds these macros via compiler flags
globally
# remove them for pseudo since pseudo intercepts some of the functions which
will be
--
2.47.1
0001-pseudo-upgrade-1.9.10-1.9.11.patch
Description: Binary data
Changelog for pseudo: 1.9.10 -> 1.9.11 ba8887e Makefile.in: Bump to 1.9.11 22bdf20 tests: Add close_range() test f85e2ae ports/linux/guts: Implement close_range() instead of returning ENOSYS
NOTE: Reconnecting to bitbake server... Loading cache...done. Loaded 0 entries from dependency cache. Parsing recipes... Summary: There were 2 ERROR messages, returning a non-zero exit code. ERROR: /srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-devtools/pseudo/pseudo_git.bb: Unable to get checksum for nativesdk-pseudo SRC_URI entry older-glibc-symbols.patch: file could not be found The following paths were searched: /srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-devtools/pseudo/pseudo-1.9.11/poky/older-glibc-symbols.patch /srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-devtools/pseudo/pseudo/poky/older-glibc-symbols.patch /srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-devtools/pseudo/files/poky/older-glibc-symbols.patch /srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-devtools/pseudo/pseudo-1.9.11/older-glibc-symbols.patch /srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-devtools/pseudo/pseudo/older-glibc-symbols.patch /srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-devtools/pseudo/files/older-glibc-symbols.patch /srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-devtools/pseudo/pseudo-1.9.11/x86-64/older-glibc-symbols.patch /srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-devtools/pseudo/pseudo/x86-64/older-glibc-symbols.patch /srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-devtools/pseudo/files/x86-64/older-glibc-symbols.patch /srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-devtools/pseudo/pseudo-1.9.11/older-glibc-symbols.patch /srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-devtools/pseudo/pseudo/older-glibc-symbols.patch /srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-devtools/pseudo/files/older-glibc-symbols.patch ERROR: Parsing halted due to errors, see error messages above
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#242905): https://lists.openembedded.org/g/openembedded-core/message/242905 Mute This Topic: https://lists.openembedded.org/mt/120622928/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
