Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *elfutils* to *0.190* has Succeeded.
Next steps:
- apply the patch: git am 0001-elfutils-upgrade-0.189-0.190.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 e662dbfc5c06107ac300a743796e315959986c3e Mon Sep 17 00:00:00 2001
From: Upgrade Helper <[email protected]>
Date: Mon, 1 Jan 2024 06:26:56 +0000
Subject: [PATCH] elfutils: upgrade 0.189 -> 0.190
---
.../{elfutils_0.189.bb => elfutils_0.190.bb} | 2 +-
...001-Add-helper-function-for-basename.patch | 117 ++++++++++++------
.../elfutils/files/0001-dso-link-change.patch | 12 +-
...libasm-may-link-with-libbz2-if-found.patch | 6 +-
...-check-data_list.data.d.d_buf-before.patch | 6 +-
...-skip-the-test-when-gcc-not-deployed.patch | 2 +-
...m-compile-test_nlist-with-standard-C.patch | 6 +-
...cvt_gunhash-if-dest-and-src-are-same.patch | 8 +-
.../elfutils/files/0003-fixheadercheck.patch | 6 +-
.../elfutils/files/0003-musl-utils.patch | 6 +-
.../0006-Fix-build-on-aarch64-musl.patch | 2 +-
.../elfutils/files/ptest.patch | 10 +-
12 files changed, 111 insertions(+), 72 deletions(-)
rename meta/recipes-devtools/elfutils/{elfutils_0.189.bb => elfutils_0.190.bb}
(98%)
diff --git a/meta/recipes-devtools/elfutils/elfutils_0.189.bb
b/meta/recipes-devtools/elfutils/elfutils_0.190.bb
similarity index 98%
rename from meta/recipes-devtools/elfutils/elfutils_0.189.bb
rename to meta/recipes-devtools/elfutils/elfutils_0.190.bb
index 220f747cb9..a6344ebde3 100644
--- a/meta/recipes-devtools/elfutils/elfutils_0.189.bb
+++ b/meta/recipes-devtools/elfutils/elfutils_0.190.bb
@@ -26,7 +26,7 @@ SRC_URI =
"https://sourceware.org/elfutils/ftp/${PV}/${BP}.tar.bz2 \
SRC_URI:append:libc-musl = " \
file://0003-musl-utils.patch \
"
-SRC_URI[sha256sum] =
"39bd8f1a338e2b7cd4abc3ff11a0eddc6e690f69578a57478d8179b4148708c8"
+SRC_URI[sha256sum] =
"8e00a3a9b5f04bc1dc273ae86281d2d26ed412020b391ffcc23198f10231d692"
inherit autotools gettext ptest pkgconfig
diff --git
a/meta/recipes-devtools/elfutils/files/0001-Add-helper-function-for-basename.patch
b/meta/recipes-devtools/elfutils/files/0001-Add-helper-function-for-basename.patch
index 3e6033fd75..4559b2fa4a 100644
---
a/meta/recipes-devtools/elfutils/files/0001-Add-helper-function-for-basename.patch
+++
b/meta/recipes-devtools/elfutils/files/0001-Add-helper-function-for-basename.patch
@@ -1,4 +1,4 @@
-From 666372a5d8d5a23203c70d583904097c9e49c5a0 Mon Sep 17 00:00:00 2001
+From ba0c55ed8af2d8b35b0a9ec68f79109029a4f909 Mon Sep 17 00:00:00 2001
From: Khem Raj <[email protected]>
Date: Sat, 9 Dec 2023 18:23:03 -0800
Subject: [PATCH] Add helper function for basename
@@ -12,27 +12,31 @@ libraries which have POSIX implementation only.
Upstream-Status: Submitted
[https://sourceware.org/pipermail/elfutils-devel/2023q4/006727.html]
[1]
https://git.musl-libc.org/cgit/musl/commit/?id=725e17ed6dff4d0cd22487bb64470881e86a92e7
Signed-off-by: Khem Raj <[email protected]>
+
---
lib/Makefile.am | 2 +-
lib/libeu.h | 1 +
- lib/{libeu.h => xbasename.c} | 31 ++++++++++------------------
+ lib/xbasename.c | 39 ++++++++++++++++++++++++++++
libdw/dwarf_getsrc_file.c | 3 ++-
libdwfl/core-file.c | 3 ++-
libdwfl/dwfl_module_getsrc_file.c | 3 ++-
libdwfl/dwfl_segment_report_module.c | 3 ++-
- libdwfl/find-debuginfo.c | 7 ++++---
+ libdwfl/find-debuginfo.c | 7 ++---
libdwfl/link_map.c | 3 ++-
libdwfl/linux-kernel-modules.c | 3 ++-
- src/addr2line.c | 5 +++--
- src/ar.c | 5 +++--
- src/nm.c | 4 ++--
+ src/addr2line.c | 5 ++--
+ src/ar.c | 5 ++--
+ src/nm.c | 4 +--
src/stack.c | 3 ++-
src/strip.c | 2 +-
- tests/show-die-info.c | 2 +-
- tests/varlocs.c | 2 +-
- 17 files changed, 42 insertions(+), 40 deletions(-)
- copy lib/{libeu.h => xbasename.c} (57%)
+ tests/Makefile.am | 2 +-
+ tests/show-die-info.c | 3 ++-
+ tests/varlocs.c | 3 ++-
+ 18 files changed, 73 insertions(+), 21 deletions(-)
+ create mode 100644 lib/xbasename.c
+diff --git a/lib/Makefile.am b/lib/Makefile.am
+index b3bb929..ada51c0 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -33,7 +33,7 @@ AM_CPPFLAGS += -I$(srcdir)/../libelf
@@ -44,9 +48,11 @@ Signed-off-by: Khem Raj <[email protected]>
crc32.c crc32_file.c \
color.c error.c printversion.c
+diff --git a/lib/libeu.h b/lib/libeu.h
+index e849a79..2a115ac 100644
--- a/lib/libeu.h
+++ b/lib/libeu.h
-@@ -42,6 +42,7 @@ extern char *xstrndup (const char *, siz
+@@ -42,6 +42,7 @@ extern char *xstrndup (const char *, size_t) __attribute__
((__malloc__));
extern char *xasprintf(const char *fmt, ...)
__attribute__ ((format (printf, 1, 2))) __attribute__ ((__malloc__));
@@ -54,6 +60,9 @@ Signed-off-by: Khem Raj <[email protected]>
extern uint32_t crc32 (uint32_t crc, unsigned char *buf, size_t len);
extern int crc32_file (int fd, uint32_t *resp);
+diff --git a/lib/xbasename.c b/lib/xbasename.c
+new file mode 100644
+index 0000000..68d5161
--- /dev/null
+++ b/lib/xbasename.c
@@ -0,0 +1,39 @@
@@ -96,6 +105,8 @@ Signed-off-by: Khem Raj <[email protected]>
+ const char *p = strrchr(s, '/');
+ return p ? p+1 : s;
+}
+diff --git a/libdw/dwarf_getsrc_file.c b/libdw/dwarf_getsrc_file.c
+index 5289c7d..f75bf7b 100644
--- a/libdw/dwarf_getsrc_file.c
+++ b/libdw/dwarf_getsrc_file.c
@@ -37,6 +37,7 @@
@@ -106,7 +117,7 @@ Signed-off-by: Khem Raj <[email protected]>
int
-@@ -98,7 +99,7 @@ dwarf_getsrc_file (Dwarf *dbg, const cha
+@@ -98,7 +99,7 @@ dwarf_getsrc_file (Dwarf *dbg, const char *fname, int
lineno, int column,
/* Match the name with the name the user provided. */
const char *fname2 = line->files->info[lastfile].name;
if (is_basename)
@@ -115,6 +126,8 @@ Signed-off-by: Khem Raj <[email protected]>
else
lastmatch = strcmp (fname2, fname) == 0;
}
+diff --git a/libdwfl/core-file.c b/libdwfl/core-file.c
+index 87c940c..52a34b8 100644
--- a/libdwfl/core-file.c
+++ b/libdwfl/core-file.c
@@ -29,6 +29,7 @@
@@ -125,7 +138,7 @@ Signed-off-by: Khem Raj <[email protected]>
#include "libdwflP.h"
#include <gelf.h>
-@@ -595,7 +596,7 @@ dwfl_core_file_report (Dwfl *dwfl, Elf *
+@@ -595,7 +596,7 @@ dwfl_core_file_report (Dwfl *dwfl, Elf *elf, const char
*executable)
if (! __libdwfl_dynamic_vaddr_get (module->elf, &file_dynamic_vaddr))
continue;
Dwfl_Module *mod;
@@ -134,6 +147,8 @@ Signed-off-by: Khem Raj <[email protected]>
module->fd, module->elf,
module->l_ld - file_dynamic_vaddr,
true, true);
+diff --git a/libdwfl/dwfl_module_getsrc_file.c
b/libdwfl/dwfl_module_getsrc_file.c
+index 513af6b..0418a26 100644
--- a/libdwfl/dwfl_module_getsrc_file.c
+++ b/libdwfl/dwfl_module_getsrc_file.c
@@ -31,6 +31,7 @@
@@ -144,7 +159,7 @@ Signed-off-by: Khem Raj <[email protected]>
#include "libdwP.h"
-@@ -103,7 +104,7 @@ dwfl_module_getsrc_file (Dwfl_Module *mo
+@@ -103,7 +104,7 @@ dwfl_module_getsrc_file (Dwfl_Module *mod,
{
/* Match the name with the name the user provided. */
lastfile = file;
@@ -153,6 +168,8 @@ Signed-off-by: Khem Raj <[email protected]>
fname);
}
}
+diff --git a/libdwfl/dwfl_segment_report_module.c
b/libdwfl/dwfl_segment_report_module.c
+index 3ef62a7..15621ad 100644
--- a/libdwfl/dwfl_segment_report_module.c
+++ b/libdwfl/dwfl_segment_report_module.c
@@ -29,6 +29,7 @@
@@ -163,7 +180,7 @@ Signed-off-by: Khem Raj <[email protected]>
#include "libdwflP.h"
#include "common.h"
-@@ -718,7 +719,7 @@ dwfl_segment_report_module (Dwfl *dwfl,
+@@ -718,7 +719,7 @@ dwfl_segment_report_module (Dwfl *dwfl, int ndx, const
char *name,
bias += fixup;
if (module->name[0] != '\0')
{
@@ -172,6 +189,8 @@ Signed-off-by: Khem Raj <[email protected]>
name_is_final = true;
}
break;
+diff --git a/libdwfl/find-debuginfo.c b/libdwfl/find-debuginfo.c
+index 7f7ab63..6aab1a4 100644
--- a/libdwfl/find-debuginfo.c
+++ b/libdwfl/find-debuginfo.c
@@ -31,6 +31,7 @@
@@ -182,7 +201,7 @@ Signed-off-by: Khem Raj <[email protected]>
#include <stdio.h>
#include <fcntl.h>
#include <sys/stat.h>
-@@ -164,7 +165,7 @@ find_debuginfo_in_path (Dwfl_Module *mod
+@@ -164,7 +165,7 @@ find_debuginfo_in_path (Dwfl_Module *mod, const char
*file_name,
{
bool cancheck = debuglink_crc != (GElf_Word) 0;
@@ -191,7 +210,7 @@ Signed-off-by: Khem Raj <[email protected]>
char *localname = NULL;
/* We invent a debuglink .debug name if NULL, but then want to try the
-@@ -278,7 +279,7 @@ find_debuginfo_in_path (Dwfl_Module *mod
+@@ -278,7 +279,7 @@ find_debuginfo_in_path (Dwfl_Module *mod, const char
*file_name,
else
{
subdir = NULL;
@@ -200,7 +219,7 @@ Signed-off-by: Khem Raj <[email protected]>
}
try_file_basename = debuglink_null;
break;
-@@ -306,7 +307,7 @@ find_debuginfo_in_path (Dwfl_Module *mod
+@@ -306,7 +307,7 @@ find_debuginfo_in_path (Dwfl_Module *mod, const char
*file_name,
if (mod->dw != NULL && (p[0] == '\0' || p[0] == '/'))
{
fd = try_open (&main_stat, dir, ".dwz",
@@ -209,6 +228,8 @@ Signed-off-by: Khem Raj <[email protected]>
if (fd < 0)
{
if (errno != ENOENT && errno != ENOTDIR)
+diff --git a/libdwfl/link_map.c b/libdwfl/link_map.c
+index 76f2335..cdaa7ed 100644
--- a/libdwfl/link_map.c
+++ b/libdwfl/link_map.c
@@ -29,6 +29,7 @@
@@ -219,7 +240,7 @@ Signed-off-by: Khem Raj <[email protected]>
#include "memory-access.h"
#include "system.h"
-@@ -469,7 +470,7 @@ report_r_debug (uint_fast8_t elfclass, u
+@@ -475,7 +476,7 @@ report_r_debug (uint_fast8_t elfclass, uint_fast8_t
elfdata,
if (r_debug_info_module == NULL)
{
// XXX hook for sysroot
@@ -228,6 +249,8 @@ Signed-off-by: Khem Raj <[email protected]>
name, fd, elf, base,
true, true);
if (mod != NULL)
+diff --git a/libdwfl/linux-kernel-modules.c b/libdwfl/linux-kernel-modules.c
+index 58c0c41..bdbde83 100644
--- a/libdwfl/linux-kernel-modules.c
+++ b/libdwfl/linux-kernel-modules.c
@@ -40,6 +40,7 @@
@@ -238,7 +261,7 @@ Signed-off-by: Khem Raj <[email protected]>
#include "libdwflP.h"
#include <inttypes.h>
#include <errno.h>
-@@ -116,7 +117,7 @@ try_kernel_name (Dwfl *dwfl, char **fnam
+@@ -116,7 +117,7 @@ try_kernel_name (Dwfl *dwfl, char **fname, bool try_debug)
/* Try the file's unadorned basename as DEBUGLINK_FILE,
to look only for "vmlinux" files. */
fd = INTUSE(dwfl_standard_find_debuginfo) (&fakemod, NULL, NULL, 0,
@@ -247,6 +270,8 @@ Signed-off-by: Khem Raj <[email protected]>
0, &fakemod.debug.name);
if (fakemod.debug.name != NULL)
+diff --git a/src/addr2line.c b/src/addr2line.c
+index d902d79..5345189 100644
--- a/src/addr2line.c
+++ b/src/addr2line.c
@@ -38,6 +38,7 @@
@@ -257,7 +282,7 @@ Signed-off-by: Khem Raj <[email protected]>
/* Name and version of program. */
-@@ -385,7 +386,7 @@ print_dwarf_function (Dwfl_Module *mod,
+@@ -385,7 +386,7 @@ print_dwarf_function (Dwfl_Module *mod, Dwarf_Addr addr)
if (file == NULL)
file = "???";
else if (only_basenames)
@@ -266,7 +291,7 @@ Signed-off-by: Khem Raj <[email protected]>
else if (use_comp_dir && file[0] != '/')
{
const char *const *dirs;
-@@ -568,7 +569,7 @@ print_src (const char *src, int lineno,
+@@ -568,7 +569,7 @@ print_src (const char *src, int lineno, int linecol,
Dwarf_Die *cu)
const char *comp_dir_sep = "";
if (only_basenames)
@@ -275,6 +300,8 @@ Signed-off-by: Khem Raj <[email protected]>
else if (use_comp_dir && src[0] != '/')
{
Dwarf_Attribute attr;
+diff --git a/src/ar.c b/src/ar.c
+index 3bcb18f..8f2dcd0 100644
--- a/src/ar.c
+++ b/src/ar.c
@@ -42,6 +42,7 @@
@@ -285,7 +312,7 @@ Signed-off-by: Khem Raj <[email protected]>
/* Name and version of program. */
-@@ -1133,7 +1134,7 @@ do_oper_insert (int oper, const char *ar
+@@ -1133,7 +1134,7 @@ do_oper_insert (int oper, const char *arfname, char
**argv, int argc,
for (int cnt = 0; cnt < argc; ++cnt)
{
ENTRY entry;
@@ -294,7 +321,7 @@ Signed-off-by: Khem Raj <[email protected]>
entry.data = &argv[cnt];
if (hsearch (entry, ENTER) == NULL)
error_exit (errno, _("cannot insert into hash table"));
-@@ -1242,7 +1243,7 @@ do_oper_insert (int oper, const char *ar
+@@ -1242,7 +1243,7 @@ do_oper_insert (int oper, const char *arfname, char
**argv, int argc,
/* Open all the new files, get their sizes and add all symbols. */
for (int cnt = 0; cnt < argc; ++cnt)
{
@@ -303,9 +330,11 @@ Signed-off-by: Khem Raj <[email protected]>
size_t bnamelen = strlen (bname);
if (found[cnt] == NULL)
{
+diff --git a/src/nm.c b/src/nm.c
+index fbdee8e..3675f59 100644
--- a/src/nm.c
+++ b/src/nm.c
-@@ -1417,7 +1417,7 @@ show_symbols (int fd, Ebl *ebl, GElf_Ehd
+@@ -1417,7 +1417,7 @@ show_symbols (int fd, Ebl *ebl, GElf_Ehdr *ehdr,
int lineno;
(void) dwarf_lineno (line, &lineno);
const char *file = dwarf_linesrc (line, NULL, NULL);
@@ -314,7 +343,7 @@ Signed-off-by: Khem Raj <[email protected]>
int n;
n = obstack_printf (&whereob, "%s:%d%c", file,
lineno, '\0');
-@@ -1448,7 +1448,7 @@ show_symbols (int fd, Ebl *ebl, GElf_Ehd
+@@ -1448,7 +1448,7 @@ show_symbols (int fd, Ebl *ebl, GElf_Ehdr *ehdr,
{
/* We found the line. */
int n = obstack_printf (&whereob, "%s:%" PRIu64 "%c",
@@ -323,6 +352,8 @@ Signed-off-by: Khem Raj <[email protected]>
(*found)->lineno,
'\0');
sym_mem[nentries_used].where = obstack_finish (&whereob);
+diff --git a/src/stack.c b/src/stack.c
+index 534aa93..3abef98 100644
--- a/src/stack.c
+++ b/src/stack.c
@@ -31,6 +31,7 @@
@@ -333,7 +364,7 @@ Signed-off-by: Khem Raj <[email protected]>
/* Name and version of program. */
ARGP_PROGRAM_VERSION_HOOK_DEF = print_version;
-@@ -152,7 +153,7 @@ module_callback (Dwfl_Module *mod, void
+@@ -152,7 +153,7 @@ module_callback (Dwfl_Module *mod, void **userdata
__attribute__((unused)),
int width = get_addr_width (mod);
printf ("0x%0*" PRIx64 "-0x%0*" PRIx64 " %s\n",
@@ -342,9 +373,11 @@ Signed-off-by: Khem Raj <[email protected]>
const unsigned char *id;
GElf_Addr id_vaddr;
+diff --git a/src/strip.c b/src/strip.c
+index 7f4788b..6436443 100644
--- a/src/strip.c
+++ b/src/strip.c
-@@ -1807,7 +1807,7 @@ handle_elf (int fd, Elf *elf, const char
+@@ -1800,7 +1800,7 @@ handle_elf (int fd, Elf *elf, const char *prefix, const
char *fname,
elf_errmsg (-1));
}
@@ -353,6 +386,21 @@ Signed-off-by: Khem Raj <[email protected]>
off_t crc_offset = strlen (debug_basename) + 1;
/* Align to 4 byte boundary */
crc_offset = ((crc_offset - 1) & ~3) + 4;
+diff --git a/tests/Makefile.am b/tests/Makefile.am
+index 79105f2..43ef6d9 100644
+--- a/tests/Makefile.am
++++ b/tests/Makefile.am
+@@ -705,7 +705,7 @@ update1_LDADD = $(libelf)
+ update2_LDADD = $(libelf)
+ update3_LDADD = $(libdw) $(libelf)
+ update4_LDADD = $(libdw) $(libelf)
+-show_die_info_LDADD = $(libdw) $(libelf)
++show_die_info_LDADD = $(libeu) $(libdw) $(libelf)
+ get_pubnames_LDADD = $(libdw) $(libelf)
+ show_abbrev_LDADD = $(libdw) $(libelf)
+ get_lines_LDADD = $(libdw) $(libelf)
+diff --git a/tests/show-die-info.c b/tests/show-die-info.c
+index 1a3191c..00a6657 100644
--- a/tests/show-die-info.c
+++ b/tests/show-die-info.c
@@ -26,6 +26,7 @@
@@ -372,6 +420,8 @@ Signed-off-by: Khem Raj <[email protected]>
dbg = dwarf_begin (fd, DWARF_C_READ);
if (dbg == NULL)
+diff --git a/tests/varlocs.c b/tests/varlocs.c
+index 8e563fd..72c64e2 100644
--- a/tests/varlocs.c
+++ b/tests/varlocs.c
@@ -33,6 +33,7 @@
@@ -391,14 +441,3 @@ Signed-off-by: Khem Raj <[email protected]>
printf ("module '%s'\n", name);
print_die (&cudie, "CU", 0);
---- a/tests/Makefile.am
-+++ b/tests/Makefile.am
-@@ -692,7 +692,7 @@ update1_LDADD = $(libelf)
- update2_LDADD = $(libelf)
- update3_LDADD = $(libdw) $(libelf)
- update4_LDADD = $(libdw) $(libelf)
--show_die_info_LDADD = $(libdw) $(libelf)
-+show_die_info_LDADD = $(libeu) $(libdw) $(libelf)
- get_pubnames_LDADD = $(libdw) $(libelf)
- show_abbrev_LDADD = $(libdw) $(libelf)
- get_lines_LDADD = $(libdw) $(libelf)
diff --git a/meta/recipes-devtools/elfutils/files/0001-dso-link-change.patch
b/meta/recipes-devtools/elfutils/files/0001-dso-link-change.patch
index 6acc036406..885d33a0c7 100644
--- a/meta/recipes-devtools/elfutils/files/0001-dso-link-change.patch
+++ b/meta/recipes-devtools/elfutils/files/0001-dso-link-change.patch
@@ -1,4 +1,4 @@
-From c5fb59ac0819b5b6d8244c613cbcf92cb09840c1 Mon Sep 17 00:00:00 2001
+From febdf33b57148510b5ef059495592c76f6ff1770 Mon Sep 17 00:00:00 2001
From: Hongxu Jia <[email protected]>
Date: Tue, 15 Aug 2017 17:10:57 +0800
Subject: [PATCH] dso link change
@@ -23,11 +23,11 @@ Signed-off-by: Hongxu Jia <[email protected]>
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am
-index 88d0ac8..c28d81f 100644
+index d3d9d40..ea61616 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -45,7 +45,7 @@ libdw = ../libdw/libdw.a -lz $(zip_LIBS) $(libelf) -ldl
-lpthread
- libelf = ../libelf/libelf.a -lz
+ libelf = ../libelf/libelf.a -lz $(zstd_LIBS)
else
libasm = ../libasm/libasm.so
-libdw = ../libdw/libdw.so
@@ -36,11 +36,11 @@ index 88d0ac8..c28d81f 100644
endif
libebl = ../libebl/libebl.a ../backends/libebl_backends.a ../libcpu/libcpu.a
diff --git a/tests/Makefile.am b/tests/Makefile.am
-index c145720..72afd0e 100644
+index 7fb8efb..71c1a61 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
-@@ -554,7 +554,7 @@ libdw = ../libdw/libdw.a -lz $(zip_LIBS) $(libelf)
$(libebl) -ldl -lpthread
- libelf = ../libelf/libelf.a -lz
+@@ -680,7 +680,7 @@ libdw = ../libdw/libdw.a -lz $(zip_LIBS) $(libelf)
$(libebl) -ldl -lpthread
+ libelf = ../libelf/libelf.a -lz $(zstd_LIBS)
libasm = ../libasm/libasm.a
else
-libdw = ../libdw/libdw.so
diff --git
a/meta/recipes-devtools/elfutils/files/0001-libasm-may-link-with-libbz2-if-found.patch
b/meta/recipes-devtools/elfutils/files/0001-libasm-may-link-with-libbz2-if-found.patch
index 09c9d3ea24..a73fcf7107 100644
---
a/meta/recipes-devtools/elfutils/files/0001-libasm-may-link-with-libbz2-if-found.patch
+++
b/meta/recipes-devtools/elfutils/files/0001-libasm-may-link-with-libbz2-if-found.patch
@@ -1,4 +1,4 @@
-From ed1975deeaa47f98d212fd144c8bda075b1a5d36 Mon Sep 17 00:00:00 2001
+From 0c3a84e4bd8ba7b092a298fdbb9b9e9330478fc3 Mon Sep 17 00:00:00 2001
From: Khem Raj <[email protected]>
Date: Wed, 4 Oct 2017 22:30:46 -0700
Subject: [PATCH] libasm may link with libbz2 if found
@@ -17,7 +17,7 @@ Signed-off-by: Khem Raj <[email protected]>
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am
-index c28d81f..951e978 100644
+index ea61616..bc6573f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -40,11 +40,11 @@ EXTRA_DIST += make-debug-archive.in
@@ -27,7 +27,7 @@ index c28d81f..951e978 100644
-libasm = ../libasm/libasm.a
+libasm = ../libasm/libasm.a $(zip_LIBS)
libdw = ../libdw/libdw.a -lz $(zip_LIBS) $(libelf) -ldl -lpthread
- libelf = ../libelf/libelf.a -lz
+ libelf = ../libelf/libelf.a -lz $(zstd_LIBS)
else
-libasm = ../libasm/libasm.so
+libasm = ../libasm/libasm.so $(zip_LIBS)
diff --git
a/meta/recipes-devtools/elfutils/files/0001-libelf-elf_end.c-check-data_list.data.d.d_buf-before.patch
b/meta/recipes-devtools/elfutils/files/0001-libelf-elf_end.c-check-data_list.data.d.d_buf-before.patch
index c8d55d583a..b4df138925 100644
---
a/meta/recipes-devtools/elfutils/files/0001-libelf-elf_end.c-check-data_list.data.d.d_buf-before.patch
+++
b/meta/recipes-devtools/elfutils/files/0001-libelf-elf_end.c-check-data_list.data.d.d_buf-before.patch
@@ -1,4 +1,4 @@
-From f40cbd43acdb1fefef4fa53a6034296d83cbff7d Mon Sep 17 00:00:00 2001
+From 6ffef0da8034556ac7077ef0b96fb756ac199f19 Mon Sep 17 00:00:00 2001
From: Robert Yang <[email protected]>
Date: Thu, 16 Aug 2018 09:58:26 +0800
Subject: [PATCH] libelf/elf_end.c: check data_list.data.d.d_buf before free it
@@ -20,10 +20,10 @@ Signed-off-by: Robert Yang <[email protected]>
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/libelf/elf_end.c b/libelf/elf_end.c
-index 160f0b8..5280a70 100644
+index 80f4d13..b103959 100644
--- a/libelf/elf_end.c
+++ b/libelf/elf_end.c
-@@ -160,14 +160,16 @@ elf_end (Elf *elf)
+@@ -169,14 +169,16 @@ elf_end (Elf *elf)
architecture doesn't require overly stringent
alignment the raw data buffer is the same as the
one used for presenting to the caller. */
diff --git
a/meta/recipes-devtools/elfutils/files/0001-skip-the-test-when-gcc-not-deployed.patch
b/meta/recipes-devtools/elfutils/files/0001-skip-the-test-when-gcc-not-deployed.patch
index 0e6bf5573c..174e518fa3 100644
---
a/meta/recipes-devtools/elfutils/files/0001-skip-the-test-when-gcc-not-deployed.patch
+++
b/meta/recipes-devtools/elfutils/files/0001-skip-the-test-when-gcc-not-deployed.patch
@@ -1,4 +1,4 @@
-From 2fa52d61b1abdf4a3f3b153c771fb2081666430c Mon Sep 17 00:00:00 2001
+From 8d4f72ce575cf14f1bbd3ed207245d2f79ee8702 Mon Sep 17 00:00:00 2001
From: Mingli Yu <[email protected]>
Date: Tue, 21 May 2019 15:20:34 +0800
Subject: [PATCH] skip the test when gcc not deployed
diff --git
a/meta/recipes-devtools/elfutils/files/0001-tests-Makefile.am-compile-test_nlist-with-standard-C.patch
b/meta/recipes-devtools/elfutils/files/0001-tests-Makefile.am-compile-test_nlist-with-standard-C.patch
index a2c0b90227..3783627a81 100644
---
a/meta/recipes-devtools/elfutils/files/0001-tests-Makefile.am-compile-test_nlist-with-standard-C.patch
+++
b/meta/recipes-devtools/elfutils/files/0001-tests-Makefile.am-compile-test_nlist-with-standard-C.patch
@@ -1,4 +1,4 @@
-From e355ca3b8ddcc6e73ee140f53d25634afdaec0da Mon Sep 17 00:00:00 2001
+From 6d8af2aee49581e520ed3afe0e3aa2a09cd8c2bc Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <[email protected]>
Date: Tue, 23 Jun 2020 07:49:35 +0000
Subject: [PATCH] tests/Makefile.am: compile test_nlist with standard CFLAGS
@@ -14,10 +14,10 @@ Signed-off-by: Alexander Kanavin <[email protected]>
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/Makefile.am b/tests/Makefile.am
-index 2ade5d9..f85cdba 100644
+index ac82456..79105f2 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
-@@ -98,7 +98,7 @@ endif
+@@ -102,7 +102,7 @@ endif
test-nlist$(EXEEXT): test-nlist.c
$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) \
diff --git
a/meta/recipes-devtools/elfutils/files/0002-Fix-elf_cvt_gunhash-if-dest-and-src-are-same.patch
b/meta/recipes-devtools/elfutils/files/0002-Fix-elf_cvt_gunhash-if-dest-and-src-are-same.patch
index be48ef010b..ccc9dcfbb4 100644
---
a/meta/recipes-devtools/elfutils/files/0002-Fix-elf_cvt_gunhash-if-dest-and-src-are-same.patch
+++
b/meta/recipes-devtools/elfutils/files/0002-Fix-elf_cvt_gunhash-if-dest-and-src-are-same.patch
@@ -1,4 +1,4 @@
-From 1643d793761216252bb654e28aaa5b8eb1536bca Mon Sep 17 00:00:00 2001
+From 08158a99104e78332573574a726b08a5044b8c12 Mon Sep 17 00:00:00 2001
From: Hongxu Jia <[email protected]>
Date: Tue, 15 Aug 2017 17:13:59 +0800
Subject: [PATCH] Fix elf_cvt_gunhash if dest and src are same.
@@ -18,10 +18,10 @@ Signed-off-by: Hongxu Jia <[email protected]>
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libelf/gnuhash_xlate.h b/libelf/gnuhash_xlate.h
-index 6faf113..04d9ca1 100644
+index 3a00ae0..40468fc 100644
--- a/libelf/gnuhash_xlate.h
+++ b/libelf/gnuhash_xlate.h
-@@ -40,6 +40,7 @@ elf_cvt_gnuhash (void *dest, const void *src, size_t len,
int encode)
+@@ -42,6 +42,7 @@ elf_cvt_gnuhash (void *dest, const void *src, size_t len,
int encode)
words. We must detangle them here. */
Elf32_Word *dest32 = dest;
const Elf32_Word *src32 = src;
@@ -29,7 +29,7 @@ index 6faf113..04d9ca1 100644
/* First four control words, 32 bits. */
for (unsigned int cnt = 0; cnt < 4; ++cnt)
-@@ -50,7 +51,7 @@ elf_cvt_gnuhash (void *dest, const void *src, size_t len,
int encode)
+@@ -52,7 +53,7 @@ elf_cvt_gnuhash (void *dest, const void *src, size_t len,
int encode)
len -= 4;
}
diff --git a/meta/recipes-devtools/elfutils/files/0003-fixheadercheck.patch
b/meta/recipes-devtools/elfutils/files/0003-fixheadercheck.patch
index 212b358dc2..d3378ecc11 100644
--- a/meta/recipes-devtools/elfutils/files/0003-fixheadercheck.patch
+++ b/meta/recipes-devtools/elfutils/files/0003-fixheadercheck.patch
@@ -1,4 +1,4 @@
-From 7e1f91c42ef5b0bf10afefec10dd08588df3ab1f Mon Sep 17 00:00:00 2001
+From 1bdea73fa028ca329153eee95e8e0f1bedfd88c6 Mon Sep 17 00:00:00 2001
From: Hongxu Jia <[email protected]>
Date: Tue, 15 Aug 2017 17:17:20 +0800
Subject: [PATCH] fixheadercheck
@@ -22,10 +22,10 @@ Signed-off-by: Hongxu Jia <[email protected]>
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libelf/elf32_updatenull.c b/libelf/elf32_updatenull.c
-index d0d4d1e..4ecf5a5 100644
+index 3594e8b..a3314e5 100644
--- a/libelf/elf32_updatenull.c
+++ b/libelf/elf32_updatenull.c
-@@ -354,8 +354,8 @@ __elfw2(LIBELFBITS,updatenull_wrlock) (Elf *elf, int
*change_bop, size_t shnum)
+@@ -355,8 +355,8 @@ __elfw2(LIBELFBITS,updatenull_wrlock) (Elf *elf, int
*change_bop, size_t shnum)
we test for the alignment of the section being large
enough for the largest alignment required by a data
block. */
diff --git a/meta/recipes-devtools/elfutils/files/0003-musl-utils.patch
b/meta/recipes-devtools/elfutils/files/0003-musl-utils.patch
index 93f5bdcd00..4303e4d3c7 100644
--- a/meta/recipes-devtools/elfutils/files/0003-musl-utils.patch
+++ b/meta/recipes-devtools/elfutils/files/0003-musl-utils.patch
@@ -1,4 +1,4 @@
-From 262ac90394e36e0b4e86042d9c5385703f5b6536 Mon Sep 17 00:00:00 2001
+From 7d7f9d3c15242d4818c47ce54b892a6c67e32457 Mon Sep 17 00:00:00 2001
From: Hongxu Jia <[email protected]>
Date: Fri, 23 Aug 2019 10:19:48 +0800
Subject: [PATCH] musl-utils
@@ -39,7 +39,7 @@ index d4a4221..f6336d9 100644
/* State of -D/-U flags. */
extern bool arlib_deterministic_output;
diff --git a/src/elfcompress.c b/src/elfcompress.c
-index 18ade66..a6ed4e1 100644
+index f771b92..263de62 100644
--- a/src/elfcompress.c
+++ b/src/elfcompress.c
@@ -37,6 +37,13 @@
@@ -57,7 +57,7 @@ index 18ade66..a6ed4e1 100644
ARGP_PROGRAM_VERSION_HOOK_DEF = print_version;
diff --git a/src/strip.c b/src/strip.c
-index 2a2cc80..8e9f773 100644
+index 6436443..1608496 100644
--- a/src/strip.c
+++ b/src/strip.c
@@ -45,6 +45,13 @@
diff --git
a/meta/recipes-devtools/elfutils/files/0006-Fix-build-on-aarch64-musl.patch
b/meta/recipes-devtools/elfutils/files/0006-Fix-build-on-aarch64-musl.patch
index 8942ad7828..5306416971 100644
--- a/meta/recipes-devtools/elfutils/files/0006-Fix-build-on-aarch64-musl.patch
+++ b/meta/recipes-devtools/elfutils/files/0006-Fix-build-on-aarch64-musl.patch
@@ -1,4 +1,4 @@
-From 2396fd67d81e54e18fbad67a5ff67d5684a01013 Mon Sep 17 00:00:00 2001
+From cebb1f52dfac60979ac28e8ef184dc714778e42f Mon Sep 17 00:00:00 2001
From: Hongxu Jia <[email protected]>
Date: Tue, 15 Aug 2017 17:27:30 +0800
Subject: [PATCH] Fix build on aarch64/musl
diff --git a/meta/recipes-devtools/elfutils/files/ptest.patch
b/meta/recipes-devtools/elfutils/files/ptest.patch
index fe6f272a83..f86c37e487 100644
--- a/meta/recipes-devtools/elfutils/files/ptest.patch
+++ b/meta/recipes-devtools/elfutils/files/ptest.patch
@@ -1,4 +1,4 @@
-From bfbf393e7d5b1b41df85ce1c37e887776c45d529 Mon Sep 17 00:00:00 2001
+From 91e86b7c45490b94bb00ab603f5fdb130237beff Mon Sep 17 00:00:00 2001
From: Richard Purdie <[email protected]>
Date: Wed, 1 May 2019 16:37:48 +0100
Subject: [PATCH] Changes to allow ptest to run standalone on target:
@@ -22,10 +22,10 @@ Upstream-Status: Inappropriate [oe specific]
3 files changed, 3 insertions(+), 7 deletions(-)
diff --git a/configure.ac b/configure.ac
-index d345495..67933d1 100644
+index af5b6bf..2ef302f 100644
--- a/configure.ac
+++ b/configure.ac
-@@ -48,7 +48,7 @@ AC_COPYRIGHT([Copyright (C) 1996-2021 The elfutils
developers.])
+@@ -49,7 +49,7 @@ AC_COPYRIGHT([Copyright (C) 1996-2023 The elfutils
developers.])
AC_PREREQ(2.63) dnl Minimum Autoconf version required.
dnl We use GNU make extensions; automake 1.10 defaults to -Wportability.
@@ -35,10 +35,10 @@ index d345495..67933d1 100644
AM_SILENT_RULES([yes])
diff --git a/tests/Makefile.am b/tests/Makefile.am
-index 72afd0e..a2dfd43 100644
+index 71c1a61..ac82456 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
-@@ -698,3 +698,5 @@ check: check-am coverage
+@@ -834,3 +834,5 @@ check: check-am coverage
coverage:
-$(srcdir)/coverage.sh
endif
--
2.42.0
packages/core2-64-poky-linux/elfutils/elfutils-doc: FILELIST: added "/usr/share/man/man1/eu-srcfiles.1" packages/core2-64-poky-linux/elfutils/elfutils-ptest: FILELIST: removed "/usr/lib/elfutils/ptest/tests/run-copymany-sections.sh /usr/lib/elfutils/ptest/tests/run-strip-reloc.sh", added "/usr/lib/elfutils/ptest/backends/loongarch_unwind.os /usr/lib/elfutils/ptest/tests/run-strip-reloc-ko.sh /usr/lib/elfutils/ptest/backends/loongarch_retval.os /usr/lib/elfutils/ptest/backends/loongarch_initreg.os /usr/lib/elfutils/ptest/tests/system-elf-gelf-test.c /usr/lib/elfutils/ptest/tests/testfilegdbindex9-no-maininfo.bz2 /usr/lib/elfutils/ptest/tests/run-strip-reloc-self.sh /usr/lib/elfutils/ptest/tests/system_elf_gelf_test-system-elf-gelf-test.o /usr/lib/elfutils/ptest/backends/loongarch_unwind.o /usr/lib/elfutils/ptest/backends/loongarch_cfi.os /usr/lib/elfutils/ptest/tests/test-copymany-subr.sh /usr/lib/elfutils/ptest/tests/testfilegdbindex9.bz2 /usr/lib/elfutils/ptest/backends/loongarch_corenote.o /usr/lib/elfutils/ptest/tests/run-strip-reloc-ppc64.sh /usr/lib/elfutils/ptest/tests/strip-relo c-subr.sh /usr/lib/elfutils/ptest/backends/loongarch_regs.o /usr/lib/elfutils/ptest/backends/loongarch_corenote.os /usr/lib/elfutils/ptest/backends/loongarch_regs.os /usr/lib/elfutils/ptest/tests/system-elf-gelf-test /usr/lib/elfutils/ptest/tests/run-copymany-be32.sh /usr/lib/elfutils/ptest/tests/run-copymany-be64.sh /usr/lib/elfutils/ptest/tests/run-copymany-le32.sh /usr/lib/elfutils/ptest/tests/run-debuginfod-IXr.sh /usr/lib/elfutils/ptest/tests/run-copymany-le64.sh /usr/lib/elfutils/ptest/backends/loongarch_cfi.o /usr/lib/elfutils/ptest/backends/loongarch_initreg.o /usr/lib/elfutils/ptest/libelf/elf32_getchdr.h /usr/lib/elfutils/ptest/tests/run-srcfiles-self.sh /usr/lib/elfutils/ptest/backends/loongarch_retval.o /usr/lib/elfutils/ptest/tests/libelf.h" packages/core2-64-poky-linux/elfutils/elfutils: FILELIST: added "/usr/bin/eu-srcfiles" packages/core2-64-poky-linux/elfutils/libasm: FILELIST: removed "/usr/lib/libasm-0.189.so", added "/usr/lib/libasm-0.190.so" packages/core2-64-poky-linux/elfutils/libdebuginfod: FILELIST: removed "/usr/lib/libdebuginfod-0.189.so", added "/usr/lib/libdebuginfod-0.190.so" packages/core2-64-poky-linux/elfutils/libdw: FILELIST: removed "/usr/lib/libdw-0.189.so", added "/usr/lib/libdw-0.190.so" packages/core2-64-poky-linux/elfutils/libelf: FILELIST: removed "/usr/lib/libelf-0.189.so", added "/usr/lib/libelf-0.190.so" Changes to packages/core2-64-poky-linux/elfutils (sysroot): /usr/lib/libasm.so.1 changed symlink target from libasm-0.189.so to libasm-0.190.so /usr/lib/libdebuginfod.so.1 changed symlink target from libdebuginfod-0.189.so to libdebuginfod-0.190.so /usr/lib/libdebuginfod.so changed symlink target from libdebuginfod-0.189.so to libdebuginfod-0.190.so /usr/lib/libdw.so.1 changed symlink target from libdw-0.189.so to libdw-0.190.so /usr/lib/libelf.so.1 changed symlink target from libelf-0.189.so to libelf-0.190.so /usr/lib/libasm-0.189.so moved to /usr/lib/libasm-0.190.so /usr/lib/libdebuginfod-0.189.so moved to /usr/lib/libdebuginfod-0.190.so /usr/lib/libdw-0.189.so moved to /usr/lib/libdw-0.190.so /usr/lib/libelf-0.189.so moved to /usr/lib/libelf-0.190.so packages/core2-64-poky-linux/gcc/gcc-doc: PKGSIZE changed from 3075608 to 106412 (-97%) Changes to packages/x86_64-linux/elfutils-native (sysroot): /usr/lib/libasm.so.1 changed symlink target from libasm-0.189.so to libasm-0.190.so /usr/lib/libdebuginfod.so.1 changed symlink target from libdebuginfod-0.189.so to libdebuginfod-0.190.so /usr/lib/libdebuginfod.so changed symlink target from libdebuginfod-0.189.so to libdebuginfod-0.190.so /usr/lib/libdw.so.1 changed symlink target from libdw-0.189.so to libdw-0.190.so /usr/lib/libelf.so.1 changed symlink target from libelf-0.189.so to libelf-0.190.so /usr/lib/libasm-0.189.so moved to /usr/lib/libasm-0.190.so /usr/lib/libdebuginfod-0.189.so moved to /usr/lib/libdebuginfod-0.190.so /usr/lib/libdw-0.189.so moved to /usr/lib/libdw-0.190.so /usr/lib/libelf-0.189.so moved to /usr/lib/libelf-0.190.so /usr/bin/eu-srcfiles was added
packages/core2-64-poky-linux/elfutils/elfutils-binutils: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-binutils: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-binutils: PKGSIZE changed from 1331808 to 1360480 (+2%) packages/core2-64-poky-linux/elfutils/elfutils-dbg: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-dbg: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-dbg: PKGSIZE changed from 28457112 to 29406912 (+3%) packages/core2-64-poky-linux/elfutils/elfutils-dbg: FILELIST: removed "/usr/lib/.debug/libelf-0.189.so /usr/lib/.debug/libasm-0.189.so /usr/lib/.debug/libdw-0.189.so /usr/lib/.debug/libdebuginfod-0.189.so", added "/usr/lib/.debug/libdw-0.190.so /usr/bin/.debug/eu-srcfiles /usr/lib/elfutils/ptest/tests/.debug/system-elf-gelf-test /usr/lib/.debug/libelf-0.190.so /usr/lib/.debug/libasm-0.190.so /usr/lib/.debug/libdebuginfod-0.190.so" packages/core2-64-poky-linux/elfutils/elfutils-dev: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-dev: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-dev: PKGSIZE changed from 215674 to 216322 (+0%) packages/core2-64-poky-linux/elfutils/elfutils-doc: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-doc: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-doc: PKGSIZE changed from 69790 to 73546 (+5%) packages/core2-64-poky-linux/elfutils/elfutils-doc: FILELIST: added "/usr/share/man/man1/eu-srcfiles.1" packages/core2-64-poky-linux/elfutils/elfutils-locale-de: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-locale-de: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-locale-en+boldquot: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-locale-en+boldquot: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-locale-en+boldquot: PKGSIZE changed from 157322 to 157744 (+0%) packages/core2-64-poky-linux/elfutils/elfutils-locale-en+quot: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-locale-en+quot: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-locale-en+quot: PKGSIZE changed from 155486 to 155908 (+0%) packages/core2-64-poky-linux/elfutils/elfutils-locale-es: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-locale-es: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-locale-es: PKGSIZE changed from 106776 to 106582 (-0%) packages/core2-64-poky-linux/elfutils/elfutils-locale-ja: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-locale-ja: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-locale-ja: PKGSIZE changed from 92248 to 92046 (-0%) packages/core2-64-poky-linux/elfutils/elfutils-locale-pl: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-locale-pl: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-locale-pl: PKGSIZE changed from 165530 to 165373 (-0%) packages/core2-64-poky-linux/elfutils/elfutils-locale-uk: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-locale-uk: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-locale-uk: PKGSIZE changed from 193954 to 193756 (-0%) packages/core2-64-poky-linux/elfutils/elfutils-ptest: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-ptest: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-ptest: PKGSIZE changed from 46650699 to 47672612 (+2%) packages/core2-64-poky-linux/elfutils/elfutils-ptest: FILELIST: removed "/usr/lib/elfutils/ptest/tests/run-copymany-sections.sh /usr/lib/elfutils/ptest/tests/run-strip-reloc.sh", added "/usr/lib/elfutils/ptest/backends/loongarch_cfi.o /usr/lib/elfutils/ptest/tests/run-strip-reloc-ppc64.sh /usr/lib/elfutils/ptest/backends/loongarch_unwind.o /usr/lib/elfutils/ptest/tests/system-elf-gelf-test /usr/lib/elfutils/ptest/tests/testfilegdbindex9.bz2 /usr/lib/elfutils/ptest/backends/loongarch_corenote.os /usr/lib/elfutils/ptest/tests/system-elf-gelf-test.c /usr/lib/elfutils/ptest/tests/run-srcfiles-self.sh /usr/lib/elfutils/ptest/backends/loongarch_initreg.o /usr/lib/elfutils/ptest/libelf/elf32_getchdr.h /usr/lib/elfutils/ptest/backends/loongarch_retval.os /usr/lib/elfutils/ptest/tests/run-copymany-be32.sh /usr/lib/elfutils/ptest/tests/run-copymany-be64.sh /usr/lib/elfutils/ptest/tests/run-copymany-le32.sh /usr/lib/elfutils/ptest/tests/run-copymany-le64.sh /usr/lib/elfutils/ptest/backends/loon garch_regs.os /usr/lib/elfutils/ptest/backends/loongarch_unwind.os /usr/lib/elfutils/ptest/backends/loongarch_regs.o /usr/lib/elfutils/ptest/backends/loongarch_cfi.os /usr/lib/elfutils/ptest/tests/libelf.h /usr/lib/elfutils/ptest/backends/loongarch_retval.o /usr/lib/elfutils/ptest/backends/loongarch_initreg.os /usr/lib/elfutils/ptest/tests/test-copymany-subr.sh /usr/lib/elfutils/ptest/tests/testfilegdbindex9-no-maininfo.bz2 /usr/lib/elfutils/ptest/backends/loongarch_corenote.o /usr/lib/elfutils/ptest/tests/run-strip-reloc-ko.sh /usr/lib/elfutils/ptest/tests/run-strip-reloc-self.sh /usr/lib/elfutils/ptest/tests/system_elf_gelf_test-system-elf-gelf-test.o /usr/lib/elfutils/ptest/tests/run-debuginfod-IXr.sh /usr/lib/elfutils/ptest/tests/strip-reloc-subr.sh" packages/core2-64-poky-linux/elfutils/elfutils-src: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-src: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-src: PKGSIZE changed from 4784766 to 4873827 (+2%) packages/core2-64-poky-linux/elfutils/elfutils-src: FILELIST: directory renamed /usr/src/debug/elfutils/0.189/debuginfod -> /usr/src/debug/elfutils/0.190/debuginfod, directory renamed /usr/src/debug/elfutils/0.189/libasm -> /usr/src/debug/elfutils/0.190/libasm, directory renamed /usr/src/debug/elfutils/0.189/libdwfl -> /usr/src/debug/elfutils/0.190/libdwfl, directory renamed /usr/src/debug/elfutils/0.189/libdw -> /usr/src/debug/elfutils/0.190/libdw, directory renamed /usr/src/debug/elfutils/0.189/libcpu -> /usr/src/debug/elfutils/0.190/libcpu, directory renamed /usr/src/debug/elfutils/0.189/libebl -> /usr/src/debug/elfutils/0.190/libebl, directory renamed /usr/src/debug/elfutils/0.189/libdwelf -> /usr/src/debug/elfutils/0.190/libdwelf, directory renamed /usr/src/debug/elfutils/0.189/lib -> /usr/src/debug/elfutils/0.190/lib, removed "/usr/src/debug/elfutils/0.189/tests/unit-info.c /usr/src/debug/elfutils/0.189/tests/dwarf-ranges.c /usr/src/debug/elfutils/0.189/libelf/libelfP.h /usr/sr c/debug/elfutils/0.189/tests/emptyfile.c /usr/src/debug/elfutils/0.189/tests/xlate_notes.c /usr/src/debug/elfutils/0.189/libelf/elf_cntl.c /usr/src/debug/elfutils/0.189/tests/allregs.c /usr/src/debug/elfutils/0.189/backends/ppc64_resolve_sym.c /usr/src/debug/elfutils/0.189/libelf/elf_rawdata.c /usr/src/debug/elfutils/0.189/libelf/elf_rawfile.c /usr/src/debug/elfutils/0.189/libelf/elf_readall.c /usr/src/debug/elfutils/0.189/backends/arm_retval.c /usr/src/debug/elfutils/0.189/backends/arm_symbol.c /usr/src/debug/elfutils/0.189/tests/deleted-lib.c /usr/src/debug/elfutils/0.189/tests/ecp.c /usr/src/debug/elfutils/0.189/tests/elfshphehdr.c /usr/src/debug/elfutils/0.189/libelf/gelf_getauxv.c /usr/src/debug/elfutils/0.189/backends/i386_unwind.c /usr/src/debug/elfutils/0.189/backends/loongarch_init.c /usr/src/debug/elfutils/0.189/tests/dwfl-report-segment-contiguous.c /usr/src/debug/elfutils/0.189/backends/ppc64_unwind.c /usr/src/debug/elfutils/0.189/backends/alpha_reloc.def /usr/src/debug/ elfutils/0.189/tests/asm-tst4.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_lib.c /usr/src/debug/elfutils/0.189/tests/asm-tst6.c /usr/src/debug/elfutils/0.189/src/elflint.c /usr/src/debug/elfutils/0.189/backends/ppc_auxv.c /usr/src/debug/elfutils/0.189/backends/loongarch_reloc.def /usr/src/debug/elfutils/0.189/backends/ppc_init.c /usr/src/debug/elfutils/0.189/backends/ppc_regs.c /usr/src/debug/elfutils/0.189/tests/typeiter2.c /usr/src/debug/elfutils/0.189/tests/newscn.c /usr/src/debug/elfutils/0.189/src/readelf.c /usr/src/debug/elfutils/0.189/backends/aarch64_initreg.c /usr/src/debug/elfutils/0.189/backends/aarch64_unwind.c /usr/src/debug/elfutils/0.189/libelf/elf_rand.c /usr/src/debug/elfutils/0.189/backends/s390_retval.c /usr/src/debug/elfutils/0.189/tests/getsrc_die.c /usr/src/debug/elfutils/0.189/tests/debuginfod_build_id_find.c /usr/src/debug/elfutils/0.189/src/objdump.c /usr/src/debug/elfutils/0.189/src/unstrip.c /usr/src/debug/elfutils/0.189/tests/backtrace.c /usr/src/de bug/elfutils/0.189/libelf/gelf_getdyn.c /usr/src/debug/elfutils/0.189/libelf/gelf_getlib.c /usr/src/debug/elfutils/0.189/libelf/gelf_getrel.c /usr/src/debug/elfutils/0.189/libelf/gelf_getsym.c /usr/src/debug/elfutils/0.189/libelf/gelf_offscn.c /usr/src/debug/elfutils/0.189/tests/dwfl-addr-sect.c /usr/src/debug/elfutils/0.189/libelf/elf_memory.c /usr/src/debug/elfutils/0.189/libelf/elf_update.c /usr/src/debug/elfutils/0.189/libelf/elf_kind.c /usr/src/debug/elfutils/0.189/src/nm.c /usr/src/debug/elfutils/0.189/tests/getphdrnum.c /usr/src/debug/elfutils/0.189/backends/m68k_retval.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_auxv.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_dyn.c /usr/src/debug/elfutils/0.189/tests/showptable.c /usr/src/debug/elfutils/0.189/tests/dwfl-bug-fd-leak.c /usr/src/debug/elfutils/0.189/libelf/gelf_newehdr.c /usr/src/debug/elfutils/0.189/libelf/gelf_newphdr.c /usr/src/debug/elfutils/0.189/libelf/gelf_getchdr.c /usr/src/debug/elfutils/0.189/backends/p pc64_retval.c /usr/src/debug/elfutils/0.189/libelf/gelf_getehdr.c /usr/src/debug/elfutils/0.189/libelf/gelf_getphdr.c /usr/src/debug/elfutils/0.189/libelf/gelf_getverneed.c /usr/src/debug/elfutils/0.189/libelf/gelf_getshdr.c /usr/src/debug/elfutils/0.189/libelf/elf32_fsize.c /usr/src/debug/elfutils/0.189/backends/sparc_corenote.c /usr/src/debug/elfutils/0.189/tests/asm-tst2.c /usr/src/debug/elfutils/0.189/libelf/elf_scnshndx.c /usr/src/debug/elfutils/0.189/tests/asm-tst8.c /usr/src/debug/elfutils/0.189/backends/sparc_regs.c /usr/src/debug/elfutils/0.189/backends/alpha_retval.c /usr/src/debug/elfutils/0.189/tests/get-lines.c /usr/src/debug/elfutils/0.189/backends/x86_64_cfi.c /usr/src/debug/elfutils/0.189/tests/debugaltlink.c /usr/src/debug/elfutils/0.189/backends/ppc_attrs.c /usr/src/debug/elfutils/0.189/libelf/elf_flagehdr.c /usr/src/debug/elfutils/0.189/libelf/elf_flagphdr.c /usr/src/debug/elfutils/0.189/libelf/elf_flagshdr.c /usr/src/debug/elfutils/0.189/libelf/elf_getdata_rawchu nk.c /usr/src/debug/elfutils/0.189/libelf/elf_getshdrstrndx.c /usr/src/debug/elfutils/0.189/backends/x86_corenote.c /usr/src/debug/elfutils/0.189/backends/i386_retval.c /usr/src/debug/elfutils/0.189/tests/get-pubnames.c /usr/src/debug/elfutils/0.189/libelf/elf_error.c /usr/src/debug/elfutils/0.189/src/elfcompress.c /usr/src/debug/elfutils/0.189/backends/x86_64_init.c /usr/src/debug/elfutils/0.189/backends/arm_initreg.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_phdr.c /usr/src/debug/elfutils/0.189/tests/saridx.c /usr/src/debug/elfutils/0.189/backends/riscv_init.c /usr/src/debug/elfutils/0.189/backends/ia64_reloc.def /usr/src/debug/elfutils/0.189/libelf/elf_ndxscn.c /usr/src/debug/elfutils/0.189/libelf/elf_newscn.c /usr/src/debug/elfutils/0.189/backends/i386_auxv.c /usr/src/debug/elfutils/0.189/backends/i386_init.c /usr/src/debug/elfutils/0.189/backends/i386_regs.c /usr/src/debug/elfutils/0.189/libelf/chdr_xlate.h /usr/src/debug/elfutils/0.189/backends/riscv_reloc.def /usr/src/ debug/elfutils/0.189/backends/csky_initreg.c /usr/src/debug/elfutils/0.189/src/findtextrel.c /usr/src/debug/elfutils/0.189/backends/sh_corenote.c /usr/src/debug/elfutils/0.189/libelf/elf_clone.c /usr/src/debug/elfutils/0.189/backends/arc_symbol.c /usr/src/debug/elfutils/0.189/backends/riscv_cfi.c /usr/src/debug/elfutils/0.189/tests/vendorelf.c /usr/src/debug/elfutils/0.189/libelf/elf_hash.c /usr/src/debug/elfutils/0.189/libelf/elf_flagdata.c /usr/src/debug/elfutils/0.189/libelf/version_xlate.h /usr/src/debug/elfutils/0.189/tests/get-units-split.c /usr/src/debug/elfutils/0.189/libelf/elf_compress.c /usr/src/debug/elfutils/0.189/libelf/elf_getphdrnum.c /usr/src/debug/elfutils/0.189/libelf/elf_getshdrnum.c /usr/src/debug/elfutils/0.189/tests/aggregate_size.c /usr/src/debug/elfutils/0.189/src/elfclassify.c /usr/src/debug/elfutils/0.189/libelf/elf32_updatefile.c /usr/src/debug/elfutils/0.189/backends/bpf_symbol.c /usr/src/debug/elfutils/0.189/tests/fillfile.c /usr/src/debug/elfutils/0.18 9/backends/s390_corenote.c /usr/src/debug/elfutils/0.189/backends/arm_cfi.c /usr/src/debug/elfutils/0.189/libelf/gelf_getclass.c /usr/src/debug/elfutils/0.189/backends/i386_cfi.c /usr/src/debug/elfutils/0.189/backends/sh_retval.c /usr/src/debug/elfutils/0.189/backends/sh_symbol.c /usr/src/debug/elfutils/0.189/backends/aarch64_reloc.def /usr/src/debug/elfutils/0.189/tests/peel_type.c /usr/src/debug/elfutils/0.189/libelf/elf_getaroff.c /usr/src/debug/elfutils/0.189/libelf/elf_getarhdr.c /usr/src/debug/elfutils/0.189/backends/i386_reloc.def /usr/src/debug/elfutils/0.189/tests/attr-integrate-skel.c /usr/src/debug/elfutils/0.189/backends/csky_attrs.c /usr/src/debug/elfutils/0.189/tests/read_unaligned.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_ehdr.c /usr/src/debug/elfutils/0.189/libelf/elf_getident.c /usr/src/debug/elfutils/0.189/backends/loongarch_symbol.c /usr/src/debug/elfutils/0.189/libelf/elf_strptr.c /usr/src/debug/elfutils/0.189/backends/csky_reloc.def /usr/src/debug/elfut ils/0.189/backends/ppc_initreg.c /usr/src/debug/elfutils/0.189/tests/next_cfi.c /usr/src/debug/elfutils/0.189/backends/sh_reloc.def /usr/src/debug/elfutils/0.189/backends/aarch64_regs.c /usr/src/debug/elfutils/0.189/tests/funcretval.c /usr/src/debug/elfutils/0.189/backends/x86_64_symbol.c /usr/src/debug/elfutils/0.189/libelf/elf.h /usr/src/debug/elfutils/0.189/libelf/libelf.h /usr/src/debug/elfutils/0.189/backends/aarch64_corenote.c /usr/src/debug/elfutils/0.189/tests/update2.c /usr/src/debug/elfutils/0.189/backends/sparc_retval.c /usr/src/debug/elfutils/0.189/tests/varlocs.c /usr/src/debug/elfutils/0.189/backends/s390_unwind.c /usr/src/debug/elfutils/0.189/libelf/gnuhash_xlate.h /usr/src/debug/elfutils/0.189/tests/elfputzdata.c /usr/src/debug/elfutils/0.189/backends/x86_64_unwind.c /usr/src/debug/elfutils/0.189/tests/update4.c /usr/src/debug/elfutils/0.189/backends/ppc_retval.c /usr/src/debug/elfutils/0.189/backends/ppc_symbol.c /usr/src/debug/elfutils/0.189/libelf/gelf_xlatetom.c /usr/src/debug/elfutils/0.189/backends/i386_corenote.c /usr/src/debug/elfutils/0.189/tests/addrcfi.c /usr/src/debug/elfutils/0.189/backends/sparc_reloc.def /usr/src/debug/elfutils/0.189/tests/dwflsyms.c /usr/src/debug/elfutils/0.189/tests/vdsosyms.c /usr/src/debug/elfutils/0.189/tests/buildid.c /usr/src/debug/elfutils/0.189/backends/arm_attrs.c /usr/src/debug/elfutils/0.189/backends/ppc64_init.c /usr/src/debug/elfutils/0.189/libelf/elf_begin.c /usr/src/debug/elfutils/0.189/libelf/elf_gnu_hash.c /usr/src/debug/elfutils/0.189/libelf/common.h /usr/src/debug/elfutils/0.189/backends/bpf_init.c /usr/src/debug/elfutils/0.189/backends/bpf_regs.c /usr/src/debug/elfutils/0.189/backends/ppc64_symbol.c /usr/src/debug/elfutils/0.189/tests/dwfl-bug-getmodules.c /usr/src/debug/elfutils/0.189/libelf/elf32_checksum.c /usr/src/debug/elfutils/0.189/tests/dwarf-getmacros.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_rela.c /usr/src/debug/elfutils/0.189/backends/alpha_regs.c /usr/src/debug/elfutils /0.189/backends/arm_corenote.c /usr/src/debug/elfutils/0.189/src/arlib-argp.c /usr/src/debug/elfutils/0.189/tests/get-files.c /usr/src/debug/elfutils/0.189/libelf/gelf.h /usr/src/debug/elfutils/0.189/tests/dwfl-bug-report.c /usr/src/debug/elfutils/0.189/tests/elfcopy.c /usr/src/debug/elfutils/0.189/backends/riscv_regs.c /usr/src/debug/elfutils/0.189/tests/dwfl-bug-addr-overflow.c /usr/src/debug/elfutils/0.189/tests/find-prologues.c /usr/src/debug/elfutils/0.189/tests/addsections.c /usr/src/debug/elfutils/0.189/libelf/elf_version.c /usr/src/debug/elfutils/0.189/libelf/elf_newdata.c /usr/src/debug/elfutils/0.189/libelf/elf_nextscn.c /usr/src/debug/elfutils/0.189/tests/newfile.c /usr/src/debug/elfutils/0.189/libelf/elf_flagelf.c /usr/src/debug/elfutils/0.189/libelf/elf_flagscn.c /usr/src/debug/elfutils/0.189/backends/x86_64_reloc.def /usr/src/debug/elfutils/0.189/libelf/gelf_getsymshndx.c /usr/src/debug/elfutils/0.189/libelf/elf_end.c /usr/src/debug/elfutils/0.189/backends/riscv_coreno te.c /usr/src/debug/elfutils/0.189/tests/dwarf-getstring.c /usr/src/debug/elfutils/0.189/tests/funcretval_test++11.cxx /usr/src/debug/elfutils/0.189/tests/dwarf-die-addr-die.c /usr/src/debug/elfutils/0.189/src/strings.c /usr/src/debug/elfutils/0.189/libelf/elf_next.c /usr/src/debug/elfutils/0.189/tests/elfrdwrnop.c /usr/src/debug/elfutils/0.189/tests/system-elf-libelf-test.c /usr/src/debug/elfutils/0.189/src/addr2line.c /usr/src/debug/elfutils/0.189/tests/asm-tst3.c /usr/src/debug/elfutils/0.189/tests/show-abbrev.c /usr/src/debug/elfutils/0.189/tests/rerequest_tag.c /usr/src/debug/elfutils/0.189/backends/x86_64_initreg.c /usr/src/debug/elfutils/0.189/libelf/elf32_getchdr.c /usr/src/debug/elfutils/0.189/libelf/elf32_getehdr.c /usr/src/debug/elfutils/0.189/libelf/elf32_getphdr.c /usr/src/debug/elfutils/0.189/libelf/elf32_getshdr.c /usr/src/debug/elfutils/0.189/libelf/elf32_newehdr.c /usr/src/debug/elfutils/0.189/libelf/elf32_newphdr.c /usr/src/debug/elfutils/0.189/backends/riscv_initr eg.c /usr/src/debug/elfutils/0.189/backends/alpha_symbol.c /usr/src/debug/elfutils/0.189/tests/line2addr.c /usr/src/debug/elfutils/0.189/backends/arc_reloc.def /usr/src/debug/elfutils/0.189/tests/asm-tst5.c /usr/src/debug/elfutils/0.189/backends/aarch64_cfi.c /usr/src/debug/elfutils/0.189/tests/asm-tst7.c /usr/src/debug/elfutils/0.189/tests/addrscopes.c /usr/src/debug/elfutils/0.189/tests/funcscopes.c /usr/src/debug/elfutils/0.189/tests/leb128.c /usr/src/debug/elfutils/0.189/backends/s390_init.c /usr/src/debug/elfutils/0.189/backends/s390_regs.c /usr/src/debug/elfutils/0.189/src/arlib.h /usr/src/debug/elfutils/0.189/src/strip.c /usr/src/debug/elfutils/0.189/src/arlib.c /usr/src/debug/elfutils/0.189/src/stack.c /usr/src/debug/elfutils/0.189/backends/x86_64_regs.c /usr/src/debug/elfutils/0.189/backends/m68k_reloc.def /usr/src/debug/elfutils/0.189/src/size.c /usr/src/debug/elfutils/0.189/tests/scnnames.c /usr/src/debug/elfutils/0.189/tests/dwelfgnucompressed.c /usr/src/debug/elfutils/0 .189/backends/aarch64_symbol.c /usr/src/debug/elfutils/0.189/backends/arm_auxv.c /usr/src/debug/elfutils/0.189/backends/arm_init.c /usr/src/debug/elfutils/0.189/backends/arm_regs.c /usr/src/debug/elfutils/0.189/libelf/gelf_checksum.c /usr/src/debug/elfutils/0.189/tests/early-offscn.c /usr/src/debug/elfutils/0.189/backends/csky_init.c /usr/src/debug/elfutils/0.189/backends/csky_regs.c /usr/src/debug/elfutils/0.189/backends/sparc_initreg.c /usr/src/debug/elfutils/0.189/backends/libebl_CPU.h /usr/src/debug/elfutils/0.189/backends/csky_cfi.c /usr/src/debug/elfutils/0.189/tests/strptr.c /usr/src/debug/elfutils/0.189/libelf/gelf_getsyminfo.c /usr/src/debug/elfutils/0.189/tests/dwfl-proc-attach.c /usr/src/debug/elfutils/0.189/libelf/elf32_xlatetof.c /usr/src/debug/elfutils/0.189/tests/show-die-info.c /usr/src/debug/elfutils/0.189/backends/ppc64_reloc.def /usr/src/debug/elfutils/0.189/backends/riscv_symbol.c /usr/src/debug/elfutils/0.189/libelf/gelf_getrela.c /usr/src/debug/elfutils/0.189/b ackends/sparc_init.c /usr/src/debug/elfutils/0.189/libelf/nlist.h /usr/src/debug/elfutils/0.189/libelf/nlist.c /usr/src/debug/elfutils/0.189/src/arlib2.c /usr/src/debug/elfutils/0.189/src/elfcmp.c /usr/src/debug/elfutils/0.189/src/ranlib.c /usr/src/debug/elfutils/0.189/tests/newdata.c /usr/src/debug/elfutils/0.189/backends/sparc_auxv.c /usr/src/debug/elfutils/0.189/libelf/note_xlate.h /usr/src/debug/elfutils/0.189/backends/sparc_symbol.c /usr/src/debug/elfutils/0.189/tests/next-lines.c /usr/src/debug/elfutils/0.189/tests/dwelf_elf_e_machine_string.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_syminfo.c /usr/src/debug/elfutils/0.189/tests/get-units-invalid.c /usr/src/debug/elfutils/0.189/backends/i386_initreg.c /usr/src/debug/elfutils/0.189/tests/test-elf_cntl_gelf_getshdr.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_rel.c /usr/src/debug/elfutils/0.189/backends/ppc_reloc.def /usr/src/debug/elfutils/0.189/libelf/gelf_getverdaux.c /usr/src/debug/elfutils/0.189/libelf/gelf_up date_symshndx.c /usr/src/debug/elfutils/0.189/tests/zstrptr.c /usr/src/debug/elfutils/0.189/tests/asm-tst1.c /usr/src/debug/elfutils/0.189/libelf/gelf_getmove.c /usr/src/debug/elfutils/0.189/libelf/gelf_getnote.c /usr/src/debug/elfutils/0.189/tests/asm-tst9.c /usr/src/debug/elfutils/0.189/tests/arsymtest.c /usr/src/debug/elfutils/0.189/tests/get-aranges.c /usr/src/debug/elfutils/0.189/tests/arextract.c /usr/src/debug/elfutils/0.189/tests/dwarfcfi.c /usr/src/debug/elfutils/0.189/backends/s390_symbol.c /usr/src/debug/elfutils/0.189/tests/msg_tst.c /usr/src/debug/elfutils/0.189/tests/dwfl-report-elf-align.c /usr/src/debug/elfutils/0.189/tests/elfstrtab.c /usr/src/debug/elfutils/0.189/backends/x86_64_corenote.c /usr/src/debug/elfutils/0.189/tests/test-flag-nobits.c /usr/src/debug/elfutils/0.189/backends/csky_symbol.c /usr/src/debug/elfutils/0.189/backends/sh_init.c /usr/src/debug/elfutils/0.189/backends/riscv_retval.c /usr/src/debug/elfutils/0.189/backends/alpha_init.c /usr/src/debug/el futils/0.189/tests/dwflmodtest.c /usr/src/debug/elfutils/0.189/backends/m68k_cfi.c /usr/src/debug/elfutils/0.189/backends/ia64_symbol.c /usr/src/debug/elfutils/0.189/backends/m68k_corenote.c /usr/src/debug/elfutils/0.189/tests/allfcts.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_verdef.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_versym.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_sym.c /usr/src/debug/elfutils/0.189/backends/common-reloc.c /usr/src/debug/elfutils/0.189/tests/arls.c /usr/src/debug/elfutils/0.189/tests/hash.c /usr/src/debug/elfutils/0.189/backends/ia64_retval.c /usr/src/debug/elfutils/0.189/libelf/elf32_xlatetom.c /usr/src/debug/elfutils/0.189/tests/elfgetchdr.c /usr/src/debug/elfutils/0.189/libelf/dl-hash.h /usr/src/debug/elfutils/0.189/backends/m68k_init.c /usr/src/debug/elfutils/0.189/backends/m68k_regs.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_verneed.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_verdaux.c /usr/src/debug/elfutils/0. 189/libelf/gelf_update_shdr.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_vernaux.c /usr/src/debug/elfutils/0.189/backends/ppc_corenote.c /usr/src/debug/elfutils/0.189/libelf/elf_compress_gnu.c /usr/src/debug/elfutils/0.189/backends/aarch64_init.c /usr/src/debug/elfutils/0.189/backends/s390_initreg.c /usr/src/debug/elfutils/0.189/backends/bpf_reloc.def /usr/src/debug/elfutils/0.189/backends/arm_reloc.def /usr/src/debug/elfutils/0.189/tests/alldts.c /usr/src/debug/elfutils/0.189/libelf/elf32_offscn.c /usr/src/debug/elfutils/0.189/libelf/elf_getscn.c /usr/src/debug/elfutils/0.189/backends/sparc_attrs.c /usr/src/debug/elfutils/0.189/tests/elfgetzdata.c /usr/src/debug/elfutils/0.189/backends/i386_symbol.c /usr/src/debug/elfutils/0.189/libelf/elf_getbase.c /usr/src/debug/elfutils/0.189/libelf/elf_getdata.c /usr/src/debug/elfutils/0.189/tests/dwarf_default_lower_bound.c /usr/src/debug/elfutils/0.189/backends/alpha_corenote.c /usr/src/debug/elfutils/0.189/src/ar.c /usr/src/debug/elfut ils/0.189/tests/low_high_pc.c /usr/src/debug/elfutils/0.189/backends/arc_init.c /usr/src/debug/elfutils/0.189/libelf/elf_fill.c /usr/src/debug/elfutils/0.189/libelf/gelf_update_move.c /usr/src/debug/elfutils/0.189/backends/arm_machineflagname.c /usr/src/debug/elfutils/0.189/tests/nvidia_extended_linemap_libdw.c /usr/src/debug/elfutils/0.189/backends/sh_regs.c /usr/src/debug/elfutils/0.189/libelf/gelf_xlate.h /usr/src/debug/elfutils/0.189/tests/rdwrmmap.c /usr/src/debug/elfutils/0.189/libelf/gelf_fsize.c /usr/src/debug/elfutils/0.189/libelf/gelf_xlate.c /usr/src/debug/elfutils/0.189/tests/all-dwarf-ranges.c /usr/src/debug/elfutils/0.189/tests/update1.c /usr/src/debug/elfutils/0.189/tests/sectiondump.c /usr/src/debug/elfutils/0.189/backends/x86_64_retval.c /usr/src/debug/elfutils/0.189/tests/next-files.c /usr/src/debug/elfutils/0.189/backends/linux-core-note.c /usr/src/debug/elfutils/0.189/tests/typeiter.c /usr/src/debug/elfutils/0.189/backends/s390_cfi.c /usr/src/debug/elfutils/0.189 /backends/alpha_auxv.c /usr/src/debug/elfutils/0.189/tests/debuglink.c /usr/src/debug/elfutils/0.189/libelf/gelf_xlatetof.c /usr/src/debug/elfutils/0.189/libelf/gelf_getversym.c /usr/src/debug/elfutils/0.189/tests/update3.c /usr/src/debug/elfutils/0.189/backends/sparc_cfi.c /usr/src/debug/elfutils/0.189/backends/csky_corenote.c /usr/src/debug/elfutils/0.189/backends/s390_reloc.def /usr/src/debug/elfutils/0.189/backends/ppc_cfi.c /usr/src/debug/elfutils/0.189/backends/ia64_init.c /usr/src/debug/elfutils/0.189/backends/ia64_regs.c /usr/src/debug/elfutils/0.189/libelf/elf_getarsym.c /usr/src/debug/elfutils/0.189/libelf/elf32_updatenull.c /usr/src/debug/elfutils/0.189/libelf/gelf_getverdef.c /usr/src/debug/elfutils/0.189/backends/m68k_symbol.c /usr/src/debug/elfutils/0.189/libelf/gelf_getvernaux.c /usr/src/debug/elfutils/0.189/backends/m68k_initreg.c /usr/src/debug/elfutils/0.189/backends/aarch64_retval.c /usr/src/debug/elfutils/0.189/tests/dwfl-report-offline-memory.c", added "/usr/src /debug/elfutils/0.190/tests/unit-info.c /usr/src/debug/elfutils/0.190/tests/dwarf-ranges.c /usr/src/debug/elfutils/0.190/libelf/libelfP.h /usr/src/debug/elfutils/0.190/tests/emptyfile.c /usr/src/debug/elfutils/0.190/tests/xlate_notes.c /usr/src/debug/elfutils/0.190/libelf/elf_cntl.c /usr/src/debug/elfutils/0.190/tests/allregs.c /usr/src/debug/elfutils/0.190/backends/ppc64_resolve_sym.c /usr/src/debug/elfutils/0.190/libelf/elf_rawdata.c /usr/src/debug/elfutils/0.190/libelf/elf_rawfile.c /usr/src/debug/elfutils/0.190/libelf/elf_readall.c /usr/src/debug/elfutils/0.190/backends/arm_retval.c /usr/src/debug/elfutils/0.190/backends/arm_symbol.c /usr/src/debug/elfutils/0.190/tests/deleted-lib.c /usr/src/debug/elfutils/0.190/tests/ecp.c /usr/src/debug/elfutils/0.190/tests/elfshphehdr.c /usr/src/debug/elfutils/0.190/libelf/gelf_getauxv.c /usr/src/debug/elfutils/0.190/backends/i386_unwind.c /usr/src/debug/elfutils/0.190/backends/loongarch_init.c /usr/src/debug/elfutils/0.190/tests/dwfl-report- segment-contiguous.c /usr/src/debug/elfutils/0.190/backends/ppc64_unwind.c /usr/src/debug/elfutils/0.190/backends/alpha_reloc.def /usr/src/debug/elfutils/0.190/tests/asm-tst4.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_lib.c /usr/src/debug/elfutils/0.190/tests/asm-tst6.c /usr/src/debug/elfutils/0.190/src/elflint.c /usr/src/debug/elfutils/0.190/backends/ppc_auxv.c /usr/src/debug/elfutils/0.190/backends/loongarch_reloc.def /usr/src/debug/elfutils/0.190/backends/ppc_init.c /usr/src/debug/elfutils/0.190/backends/ppc_regs.c /usr/src/debug/elfutils/0.190/tests/typeiter2.c /usr/src/debug/elfutils/0.190/tests/newscn.c /usr/src/debug/elfutils/0.190/src/readelf.c /usr/src/debug/elfutils/0.190/backends/aarch64_initreg.c /usr/src/debug/elfutils/0.190/backends/aarch64_unwind.c /usr/src/debug/elfutils/0.190/libelf/elf_rand.c /usr/src/debug/elfutils/0.190/backends/s390_retval.c /usr/src/debug/elfutils/0.190/tests/getsrc_die.c /usr/src/debug/elfutils/0.190/tests/debuginfod_build_id_find.c /u sr/src/debug/elfutils/0.190/src/objdump.c /usr/src/debug/elfutils/0.190/src/unstrip.c /usr/src/debug/elfutils/0.190/tests/backtrace.c /usr/src/debug/elfutils/0.190/libelf/gelf_getdyn.c /usr/src/debug/elfutils/0.190/libelf/gelf_getlib.c /usr/src/debug/elfutils/0.190/libelf/gelf_getrel.c /usr/src/debug/elfutils/0.190/libelf/gelf_getsym.c /usr/src/debug/elfutils/0.190/libelf/gelf_offscn.c /usr/src/debug/elfutils/0.190/tests/dwfl-addr-sect.c /usr/src/debug/elfutils/0.190/libelf/elf_memory.c /usr/src/debug/elfutils/0.190/libelf/elf_update.c /usr/src/debug/elfutils/0.190/libelf/elf_kind.c /usr/src/debug/elfutils/0.190/src/nm.c /usr/src/debug/elfutils/0.190/tests/getphdrnum.c /usr/src/debug/elfutils/0.190/backends/m68k_retval.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_auxv.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_dyn.c /usr/src/debug/elfutils/0.190/tests/showptable.c /usr/src/debug/elfutils/0.190/tests/dwfl-bug-fd-leak.c /usr/src/debug/elfutils/0.190/libelf/gelf_newehdr.c /usr/src/debug/elfutils/0.190/libelf/gelf_newphdr.c /usr/src/debug/elfutils/0.190/libelf/gelf_getchdr.c /usr/src/debug/elfutils/0.190/backends/ppc64_retval.c /usr/src/debug/elfutils/0.190/libelf/gelf_getehdr.c /usr/src/debug/elfutils/0.190/libelf/gelf_getphdr.c /usr/src/debug/elfutils/0.190/libelf/gelf_getverneed.c /usr/src/debug/elfutils/0.190/libelf/gelf_getshdr.c /usr/src/debug/elfutils/0.190/libelf/elf32_fsize.c /usr/src/debug/elfutils/0.190/backends/sparc_corenote.c /usr/src/debug/elfutils/0.190/tests/asm-tst2.c /usr/src/debug/elfutils/0.190/libelf/elf_scnshndx.c /usr/src/debug/elfutils/0.190/tests/asm-tst8.c /usr/src/debug/elfutils/0.190/backends/sparc_regs.c /usr/src/debug/elfutils/0.190/backends/alpha_retval.c /usr/src/debug/elfutils/0.190/tests/get-lines.c /usr/src/debug/elfutils/0.190/backends/x86_64_cfi.c /usr/src/debug/elfutils/0.190/tests/debugaltlink.c /usr/src/debug/elfutils/0.190/backends/ppc_attrs.c /usr/src/debug/elfutils/0.190/libelf/elf_flagehdr.c /usr/src/debug /elfutils/0.190/libelf/elf_flagphdr.c /usr/src/debug/elfutils/0.190/libelf/elf_flagshdr.c /usr/src/debug/elfutils/0.190/libelf/elf_getdata_rawchunk.c /usr/src/debug/elfutils/0.190/libelf/elf_getshdrstrndx.c /usr/src/debug/elfutils/0.190/backends/x86_corenote.c /usr/src/debug/elfutils/0.190/backends/i386_retval.c /usr/src/debug/elfutils/0.190/tests/get-pubnames.c /usr/src/debug/elfutils/0.190/libelf/elf_error.c /usr/src/debug/elfutils/0.190/src/elfcompress.c /usr/src/debug/elfutils/0.190/backends/x86_64_init.c /usr/src/debug/elfutils/0.190/backends/arm_initreg.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_phdr.c /usr/src/debug/elfutils/0.190/tests/saridx.c /usr/src/debug/elfutils/0.190/backends/riscv_init.c /usr/src/debug/elfutils/0.190/backends/ia64_reloc.def /usr/src/debug/elfutils/0.190/libelf/elf_ndxscn.c /usr/src/debug/elfutils/0.190/libelf/elf_newscn.c /usr/src/debug/elfutils/0.190/backends/i386_auxv.c /usr/src/debug/elfutils/0.190/backends/i386_init.c /usr/src/debug/elfut ils/0.190/backends/i386_regs.c /usr/src/debug/elfutils/0.190/libelf/chdr_xlate.h /usr/src/debug/elfutils/0.190/backends/riscv_reloc.def /usr/src/debug/elfutils/0.190/backends/csky_initreg.c /usr/src/debug/elfutils/0.190/src/findtextrel.c /usr/src/debug/elfutils/0.190/backends/sh_corenote.c /usr/src/debug/elfutils/0.190/libelf/elf_clone.c /usr/src/debug/elfutils/0.190/backends/arc_symbol.c /usr/src/debug/elfutils/0.190/backends/riscv_cfi.c /usr/src/debug/elfutils/0.190/tests/vendorelf.c /usr/src/debug/elfutils/0.190/libelf/elf_hash.c /usr/src/debug/elfutils/0.190/libelf/elf_flagdata.c /usr/src/debug/elfutils/0.190/libelf/version_xlate.h /usr/src/debug/elfutils/0.190/tests/get-units-split.c /usr/src/debug/elfutils/0.190/libelf/elf_compress.c /usr/src/debug/elfutils/0.190/libelf/elf_getphdrnum.c /usr/src/debug/elfutils/0.190/libelf/elf_getshdrnum.c /usr/src/debug/elfutils/0.190/tests/aggregate_size.c /usr/src/debug/elfutils/0.190/src/elfclassify.c /usr/src/debug/elfutils/0.190/libelf/e lf32_updatefile.c /usr/src/debug/elfutils/0.190/backends/bpf_symbol.c /usr/src/debug/elfutils/0.190/tests/fillfile.c /usr/src/debug/elfutils/0.190/backends/s390_corenote.c /usr/src/debug/elfutils/0.190/backends/arm_cfi.c /usr/src/debug/elfutils/0.190/libelf/gelf_getclass.c /usr/src/debug/elfutils/0.190/backends/i386_cfi.c /usr/src/debug/elfutils/0.190/backends/sh_retval.c /usr/src/debug/elfutils/0.190/backends/sh_symbol.c /usr/src/debug/elfutils/0.190/backends/aarch64_reloc.def /usr/src/debug/elfutils/0.190/tests/peel_type.c /usr/src/debug/elfutils/0.190/libelf/elf_getaroff.c /usr/src/debug/elfutils/0.190/libelf/elf_getarhdr.c /usr/src/debug/elfutils/0.190/backends/i386_reloc.def /usr/src/debug/elfutils/0.190/tests/attr-integrate-skel.c /usr/src/debug/elfutils/0.190/backends/csky_attrs.c /usr/src/debug/elfutils/0.190/tests/read_unaligned.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_ehdr.c /usr/src/debug/elfutils/0.190/libelf/elf_getident.c /usr/src/debug/elfutils/0.190/backend s/loongarch_symbol.c /usr/src/debug/elfutils/0.190/libelf/elf_strptr.c /usr/src/debug/elfutils/0.190/backends/csky_reloc.def /usr/src/debug/elfutils/0.190/backends/ppc_initreg.c /usr/src/debug/elfutils/0.190/tests/next_cfi.c /usr/src/debug/elfutils/0.190/backends/sh_reloc.def /usr/src/debug/elfutils/0.190/backends/loongarch_corenote.c /usr/src/debug/elfutils/0.190/backends/aarch64_regs.c /usr/src/debug/elfutils/0.190/tests/funcretval.c /usr/src/debug/elfutils/0.190/backends/x86_64_symbol.c /usr/src/debug/elfutils/0.190/libelf/elf.h /usr/src/debug/elfutils/0.190/backends/loongarch_cfi.c /usr/src/debug/elfutils/0.190/libelf/libelf.h /usr/src/debug/elfutils/0.190/backends/aarch64_corenote.c /usr/src/debug/elfutils/0.190/tests/update2.c /usr/src/debug/elfutils/0.190/backends/sparc_retval.c /usr/src/debug/elfutils/0.190/tests/varlocs.c /usr/src/debug/elfutils/0.190/backends/s390_unwind.c /usr/src/debug/elfutils/0.190/libelf/gnuhash_xlate.h /usr/src/debug/elfutils/0.190/tests/elfputzdata. c /usr/src/debug/elfutils/0.190/backends/x86_64_unwind.c /usr/src/debug/elfutils/0.190/tests/update4.c /usr/src/debug/elfutils/0.190/backends/ppc_retval.c /usr/src/debug/elfutils/0.190/backends/ppc_symbol.c /usr/src/debug/elfutils/0.190/libelf/gelf_xlatetom.c /usr/src/debug/elfutils/0.190/backends/i386_corenote.c /usr/src/debug/elfutils/0.190/tests/addrcfi.c /usr/src/debug/elfutils/0.190/backends/sparc_reloc.def /usr/src/debug/elfutils/0.190/tests/dwflsyms.c /usr/src/debug/elfutils/0.190/tests/vdsosyms.c /usr/src/debug/elfutils/0.190/tests/buildid.c /usr/src/debug/elfutils/0.190/backends/arm_attrs.c /usr/src/debug/elfutils/0.190/backends/ppc64_init.c /usr/src/debug/elfutils/0.190/libelf/elf_begin.c /usr/src/debug/elfutils/0.190/libelf/elf_gnu_hash.c /usr/src/debug/elfutils/0.190/libelf/common.h /usr/src/debug/elfutils/0.190/backends/bpf_init.c /usr/src/debug/elfutils/0.190/backends/bpf_regs.c /usr/src/debug/elfutils/0.190/backends/ppc64_symbol.c /usr/src/debug/elfutils/0.190/tests/d wfl-bug-getmodules.c /usr/src/debug/elfutils/0.190/libelf/elf32_checksum.c /usr/src/debug/elfutils/0.190/tests/dwarf-getmacros.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_rela.c /usr/src/debug/elfutils/0.190/backends/alpha_regs.c /usr/src/debug/elfutils/0.190/backends/arm_corenote.c /usr/src/debug/elfutils/0.190/src/arlib-argp.c /usr/src/debug/elfutils/0.190/tests/get-files.c /usr/src/debug/elfutils/0.190/libelf/gelf.h /usr/src/debug/elfutils/0.190/tests/dwfl-bug-report.c /usr/src/debug/elfutils/0.190/tests/elfcopy.c /usr/src/debug/elfutils/0.190/backends/riscv_regs.c /usr/src/debug/elfutils/0.190/tests/dwfl-bug-addr-overflow.c /usr/src/debug/elfutils/0.190/tests/find-prologues.c /usr/src/debug/elfutils/0.190/tests/addsections.c /usr/src/debug/elfutils/0.190/libelf/elf_version.c /usr/src/debug/elfutils/0.190/libelf/elf_newdata.c /usr/src/debug/elfutils/0.190/libelf/elf_nextscn.c /usr/src/debug/elfutils/0.190/tests/newfile.c /usr/src/debug/elfutils/0.190/libelf/elf_flagelf.c / usr/src/debug/elfutils/0.190/libelf/elf_flagscn.c /usr/src/debug/elfutils/0.190/backends/x86_64_reloc.def /usr/src/debug/elfutils/0.190/libelf/gelf_getsymshndx.c /usr/src/debug/elfutils/0.190/src/srcfiles.cxx /usr/src/debug/elfutils/0.190/libelf/elf_end.c /usr/src/debug/elfutils/0.190/backends/riscv_corenote.c /usr/src/debug/elfutils/0.190/tests/dwarf-getstring.c /usr/src/debug/elfutils/0.190/backends/loongarch_initreg.c /usr/src/debug/elfutils/0.190/tests/funcretval_test++11.cxx /usr/src/debug/elfutils/0.190/tests/dwarf-die-addr-die.c /usr/src/debug/elfutils/0.190/src/strings.c /usr/src/debug/elfutils/0.190/libelf/elf_next.c /usr/src/debug/elfutils/0.190/tests/elfrdwrnop.c /usr/src/debug/elfutils/0.190/tests/system-elf-gelf-test.c /usr/src/debug/elfutils/0.190/tests/system-elf-libelf-test.c /usr/src/debug/elfutils/0.190/src/addr2line.c /usr/src/debug/elfutils/0.190/tests/asm-tst3.c /usr/src/debug/elfutils/0.190/tests/show-abbrev.c /usr/src/debug/elfutils/0.190/libelf/elf32_getchdr. h /usr/src/debug/elfutils/0.190/tests/rerequest_tag.c /usr/src/debug/elfutils/0.190/backends/x86_64_initreg.c /usr/src/debug/elfutils/0.190/libelf/elf32_getehdr.c /usr/src/debug/elfutils/0.190/libelf/elf32_getphdr.c /usr/src/debug/elfutils/0.190/libelf/elf32_getshdr.c /usr/src/debug/elfutils/0.190/libelf/elf32_newehdr.c /usr/src/debug/elfutils/0.190/libelf/elf32_newphdr.c /usr/src/debug/elfutils/0.190/backends/riscv_initreg.c /usr/src/debug/elfutils/0.190/backends/alpha_symbol.c /usr/src/debug/elfutils/0.190/tests/line2addr.c /usr/src/debug/elfutils/0.190/backends/arc_reloc.def /usr/src/debug/elfutils/0.190/tests/asm-tst5.c /usr/src/debug/elfutils/0.190/backends/aarch64_cfi.c /usr/src/debug/elfutils/0.190/tests/asm-tst7.c /usr/src/debug/elfutils/0.190/tests/addrscopes.c /usr/src/debug/elfutils/0.190/tests/funcscopes.c /usr/src/debug/elfutils/0.190/tests/leb128.c /usr/src/debug/elfutils/0.190/backends/loongarch_unwind.c /usr/src/debug/elfutils/0.190/backends/s390_init.c /usr/src/debu g/elfutils/0.190/backends/s390_regs.c /usr/src/debug/elfutils/0.190/src/arlib.h /usr/src/debug/elfutils/0.190/src/strip.c /usr/src/debug/elfutils/0.190/src/arlib.c /usr/src/debug/elfutils/0.190/src/stack.c /usr/src/debug/elfutils/0.190/backends/x86_64_regs.c /usr/src/debug/elfutils/0.190/backends/m68k_reloc.def /usr/src/debug/elfutils/0.190/src/size.c /usr/src/debug/elfutils/0.190/tests/scnnames.c /usr/src/debug/elfutils/0.190/tests/dwelfgnucompressed.c /usr/src/debug/elfutils/0.190/backends/aarch64_symbol.c /usr/src/debug/elfutils/0.190/backends/arm_auxv.c /usr/src/debug/elfutils/0.190/backends/arm_init.c /usr/src/debug/elfutils/0.190/backends/arm_regs.c /usr/src/debug/elfutils/0.190/libelf/gelf_checksum.c /usr/src/debug/elfutils/0.190/tests/early-offscn.c /usr/src/debug/elfutils/0.190/backends/csky_init.c /usr/src/debug/elfutils/0.190/backends/csky_regs.c /usr/src/debug/elfutils/0.190/backends/sparc_initreg.c /usr/src/debug/elfutils/0.190/backends/libebl_CPU.h /usr/src/debug/elfut ils/0.190/backends/csky_cfi.c /usr/src/debug/elfutils/0.190/tests/strptr.c /usr/src/debug/elfutils/0.190/libelf/gelf_getsyminfo.c /usr/src/debug/elfutils/0.190/tests/dwfl-proc-attach.c /usr/src/debug/elfutils/0.190/libelf/elf32_xlatetof.c /usr/src/debug/elfutils/0.190/tests/show-die-info.c /usr/src/debug/elfutils/0.190/backends/ppc64_reloc.def /usr/src/debug/elfutils/0.190/backends/riscv_symbol.c /usr/src/debug/elfutils/0.190/libelf/gelf_getrela.c /usr/src/debug/elfutils/0.190/backends/sparc_init.c /usr/src/debug/elfutils/0.190/libelf/nlist.h /usr/src/debug/elfutils/0.190/libelf/nlist.c /usr/src/debug/elfutils/0.190/src/arlib2.c /usr/src/debug/elfutils/0.190/src/elfcmp.c /usr/src/debug/elfutils/0.190/src/ranlib.c /usr/src/debug/elfutils/0.190/tests/newdata.c /usr/src/debug/elfutils/0.190/backends/sparc_auxv.c /usr/src/debug/elfutils/0.190/libelf/note_xlate.h /usr/src/debug/elfutils/0.190/backends/sparc_symbol.c /usr/src/debug/elfutils/0.190/tests/next-lines.c /usr/src/debug/elfutils /0.190/tests/dwelf_elf_e_machine_string.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_syminfo.c /usr/src/debug/elfutils/0.190/tests/get-units-invalid.c /usr/src/debug/elfutils/0.190/backends/i386_initreg.c /usr/src/debug/elfutils/0.190/tests/test-elf_cntl_gelf_getshdr.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_rel.c /usr/src/debug/elfutils/0.190/backends/ppc_reloc.def /usr/src/debug/elfutils/0.190/libelf/gelf_getverdaux.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_symshndx.c /usr/src/debug/elfutils/0.190/tests/zstrptr.c /usr/src/debug/elfutils/0.190/tests/asm-tst1.c /usr/src/debug/elfutils/0.190/libelf/gelf_getmove.c /usr/src/debug/elfutils/0.190/libelf/gelf_getnote.c /usr/src/debug/elfutils/0.190/tests/asm-tst9.c /usr/src/debug/elfutils/0.190/backends/loongarch_retval.c /usr/src/debug/elfutils/0.190/tests/arsymtest.c /usr/src/debug/elfutils/0.190/tests/get-aranges.c /usr/src/debug/elfutils/0.190/tests/arextract.c /usr/src/debug/elfutils/0.190/backends/loongarch_r egs.c /usr/src/debug/elfutils/0.190/tests/dwarfcfi.c /usr/src/debug/elfutils/0.190/backends/s390_symbol.c /usr/src/debug/elfutils/0.190/tests/msg_tst.c /usr/src/debug/elfutils/0.190/tests/dwfl-report-elf-align.c /usr/src/debug/elfutils/0.190/tests/elfstrtab.c /usr/src/debug/elfutils/0.190/backends/x86_64_corenote.c /usr/src/debug/elfutils/0.190/tests/test-flag-nobits.c /usr/src/debug/elfutils/0.190/backends/csky_symbol.c /usr/src/debug/elfutils/0.190/backends/sh_init.c /usr/src/debug/elfutils/0.190/backends/riscv_retval.c /usr/src/debug/elfutils/0.190/backends/alpha_init.c /usr/src/debug/elfutils/0.190/tests/dwflmodtest.c /usr/src/debug/elfutils/0.190/backends/m68k_cfi.c /usr/src/debug/elfutils/0.190/backends/ia64_symbol.c /usr/src/debug/elfutils/0.190/tests/libelf.h /usr/src/debug/elfutils/0.190/backends/m68k_corenote.c /usr/src/debug/elfutils/0.190/tests/allfcts.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_verdef.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_versym.c /u sr/src/debug/elfutils/0.190/libelf/gelf_update_sym.c /usr/src/debug/elfutils/0.190/backends/common-reloc.c /usr/src/debug/elfutils/0.190/tests/arls.c /usr/src/debug/elfutils/0.190/tests/hash.c /usr/src/debug/elfutils/0.190/backends/ia64_retval.c /usr/src/debug/elfutils/0.190/libelf/elf32_xlatetom.c /usr/src/debug/elfutils/0.190/tests/elfgetchdr.c /usr/src/debug/elfutils/0.190/libelf/dl-hash.h /usr/src/debug/elfutils/0.190/backends/m68k_init.c /usr/src/debug/elfutils/0.190/backends/m68k_regs.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_verneed.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_verdaux.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_shdr.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_vernaux.c /usr/src/debug/elfutils/0.190/backends/ppc_corenote.c /usr/src/debug/elfutils/0.190/libelf/elf_compress_gnu.c /usr/src/debug/elfutils/0.190/backends/aarch64_init.c /usr/src/debug/elfutils/0.190/backends/s390_initreg.c /usr/src/debug/elfutils/0.190/backends/bpf_reloc .def /usr/src/debug/elfutils/0.190/backends/arm_reloc.def /usr/src/debug/elfutils/0.190/tests/alldts.c /usr/src/debug/elfutils/0.190/libelf/elf32_offscn.c /usr/src/debug/elfutils/0.190/libelf/elf_getscn.c /usr/src/debug/elfutils/0.190/backends/sparc_attrs.c /usr/src/debug/elfutils/0.190/tests/elfgetzdata.c /usr/src/debug/elfutils/0.190/backends/i386_symbol.c /usr/src/debug/elfutils/0.190/libelf/elf_getbase.c /usr/src/debug/elfutils/0.190/libelf/elf_getdata.c /usr/src/debug/elfutils/0.190/tests/dwarf_default_lower_bound.c /usr/src/debug/elfutils/0.190/backends/alpha_corenote.c /usr/src/debug/elfutils/0.190/src/ar.c /usr/src/debug/elfutils/0.190/tests/low_high_pc.c /usr/src/debug/elfutils/0.190/backends/arc_init.c /usr/src/debug/elfutils/0.190/libelf/elf_fill.c /usr/src/debug/elfutils/0.190/libelf/gelf_update_move.c /usr/src/debug/elfutils/0.190/backends/arm_machineflagname.c /usr/src/debug/elfutils/0.190/tests/nvidia_extended_linemap_libdw.c /usr/src/debug/elfutils/0.190/backends/sh_ regs.c /usr/src/debug/elfutils/0.190/libelf/gelf_xlate.h /usr/src/debug/elfutils/0.190/tests/rdwrmmap.c /usr/src/debug/elfutils/0.190/libelf/gelf_fsize.c /usr/src/debug/elfutils/0.190/libelf/gelf_xlate.c /usr/src/debug/elfutils/0.190/tests/all-dwarf-ranges.c /usr/src/debug/elfutils/0.190/tests/update1.c /usr/src/debug/elfutils/0.190/tests/sectiondump.c /usr/src/debug/elfutils/0.190/backends/x86_64_retval.c /usr/src/debug/elfutils/0.190/tests/next-files.c /usr/src/debug/elfutils/0.190/backends/linux-core-note.c /usr/src/debug/elfutils/0.190/tests/typeiter.c /usr/src/debug/elfutils/0.190/backends/s390_cfi.c /usr/src/debug/elfutils/0.190/backends/alpha_auxv.c /usr/src/debug/elfutils/0.190/tests/debuglink.c /usr/src/debug/elfutils/0.190/libelf/gelf_xlatetof.c /usr/src/debug/elfutils/0.190/libelf/gelf_getversym.c /usr/src/debug/elfutils/0.190/tests/update3.c /usr/src/debug/elfutils/0.190/backends/sparc_cfi.c /usr/src/debug/elfutils/0.190/backends/csky_corenote.c /usr/src/debug/elfutils/0 .190/backends/s390_reloc.def /usr/src/debug/elfutils/0.190/backends/ppc_cfi.c /usr/src/debug/elfutils/0.190/backends/ia64_init.c /usr/src/debug/elfutils/0.190/backends/ia64_regs.c /usr/src/debug/elfutils/0.190/libelf/elf_getarsym.c /usr/src/debug/elfutils/0.190/libelf/elf32_updatenull.c /usr/src/debug/elfutils/0.190/libelf/gelf_getverdef.c /usr/src/debug/elfutils/0.190/backends/m68k_symbol.c /usr/src/debug/elfutils/0.190/libelf/gelf_getvernaux.c /usr/src/debug/elfutils/0.190/backends/m68k_initreg.c /usr/src/debug/elfutils/0.190/backends/aarch64_retval.c /usr/src/debug/elfutils/0.190/tests/dwfl-report-offline-memory.c" packages/core2-64-poky-linux/elfutils/elfutils-staticdev: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils-staticdev: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils-staticdev: PKGSIZE changed from 10693708 to 10784886 (+1%) packages/core2-64-poky-linux/elfutils/elfutils: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/elfutils: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/elfutils: PKGSIZE changed from 1586405 to 1641909 (+3%) packages/core2-64-poky-linux/elfutils/elfutils: FILELIST: added "/usr/bin/eu-srcfiles" packages/core2-64-poky-linux/elfutils: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils: SRC_URI changed from "https://sourceware.org/elfutils/ftp/0.189/elfutils-0.189.tar.bz2 file://run-ptest file://0001-dso-link-change.patch file://0002-Fix-elf_cvt_gunhash-if-dest-and-src-are-same.patch file://0003-fixheadercheck.patch file://0006-Fix-build-on-aarch64-musl.patch file://0001-libasm-may-link-with-libbz2-if-found.patch file://0001-libelf-elf_end.c-check-data_list.data.d.d_buf-before.patch file://0001-skip-the-test-when-gcc-not-deployed.patch file://ptest.patch file://0001-tests-Makefile.am-compile-test_nlist-with-standard-C.patch file://0001-Add-helper-function-for-basename.patch" to "https://sourceware.org/elfutils/ftp/0.190/elfutils-0.190.tar.bz2 file://run-ptest file://0001-dso-link-change.patch file://0002-Fix-elf_cvt_gunhash-if-dest-and-src-are-same.patch file://0003-fixheadercheck.patch file://0006-Fix-build-on-aarch64-musl.patch file://0001-libasm-may-link-with-libbz2-if-found.patch file://0001-libelf-elf_end.c-check-data_list .data.d.d_buf-before.patch file://0001-skip-the-test-when-gcc-not-deployed.patch file://ptest.patch file://0001-tests-Makefile.am-compile-test_nlist-with-standard-C.patch file://0001-Add-helper-function-for-basename.patch" packages/core2-64-poky-linux/elfutils/libasm: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/libasm: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/libasm: FILES: removed "/usr/lib/libasm-0.189.so", added "/usr/lib/libasm-0.190.so" packages/core2-64-poky-linux/elfutils/libasm: FILELIST: removed "/usr/lib/libasm-0.189.so", added "/usr/lib/libasm-0.190.so" packages/core2-64-poky-linux/elfutils/libdebuginfod: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/libdebuginfod: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/libdebuginfod: FILES: removed "/usr/lib/libdebuginfod-0.189.so", added "/usr/lib/libdebuginfod-0.190.so" packages/core2-64-poky-linux/elfutils/libdebuginfod: FILELIST: removed "/usr/lib/libdebuginfod-0.189.so", added "/usr/lib/libdebuginfod-0.190.so" packages/core2-64-poky-linux/elfutils/libdw: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/libdw: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/libdw: FILES: removed "/usr/lib/libdw-0.189.so", added "/usr/lib/libdw-0.190.so" packages/core2-64-poky-linux/elfutils/libdw: PKGSIZE changed from 642078 to 646174 (+1%) packages/core2-64-poky-linux/elfutils/libdw: FILELIST: removed "/usr/lib/libdw-0.189.so", added "/usr/lib/libdw-0.190.so" packages/core2-64-poky-linux/elfutils/libelf: PKGV changed from 0.189 [default] to 0.190 [default] packages/core2-64-poky-linux/elfutils/libelf: PV changed from "0.189" to "0.190" packages/core2-64-poky-linux/elfutils/libelf: FILES: removed "/usr/lib/libelf-0.189.so", added "/usr/lib/libelf-0.190.so" packages/core2-64-poky-linux/elfutils/libelf: PKGSIZE changed from 104575 to 108671 (+4%) packages/core2-64-poky-linux/elfutils/libelf: FILELIST: removed "/usr/lib/libelf-0.189.so", added "/usr/lib/libelf-0.190.so" Changes to packages/core2-64-poky-linux/elfutils (sysroot): /usr/lib/libasm.so.1 changed symlink target from libasm-0.189.so to libasm-0.190.so /usr/lib/libdebuginfod.so.1 changed symlink target from libdebuginfod-0.189.so to libdebuginfod-0.190.so /usr/lib/libdebuginfod.so changed symlink target from libdebuginfod-0.189.so to libdebuginfod-0.190.so /usr/lib/libdw.so.1 changed symlink target from libdw-0.189.so to libdw-0.190.so /usr/lib/libelf.so.1 changed symlink target from libelf-0.189.so to libelf-0.190.so /usr/lib/libasm-0.189.so moved to /usr/lib/libasm-0.190.so /usr/lib/libdebuginfod-0.189.so moved to /usr/lib/libdebuginfod-0.190.so /usr/lib/libdw-0.189.so moved to /usr/lib/libdw-0.190.so /usr/lib/libelf-0.189.so moved to /usr/lib/libelf-0.190.so packages/core2-64-poky-linux/gcc/gcc-doc: PKGSIZE changed from 3075608 to 106412 (-97%) packages/core2-64-poky-linux/iproute2/iproute2-dbg: PKGSIZE changed from 8291736 to 8291768 (+0%) Changes to packages/x86_64-linux/elfutils-native (sysroot): /usr/lib/libasm.so.1 changed symlink target from libasm-0.189.so to libasm-0.190.so /usr/lib/libdebuginfod.so.1 changed symlink target from libdebuginfod-0.189.so to libdebuginfod-0.190.so /usr/lib/libdebuginfod.so changed symlink target from libdebuginfod-0.189.so to libdebuginfod-0.190.so /usr/lib/libdw.so.1 changed symlink target from libdw-0.189.so to libdw-0.190.so /usr/lib/libelf.so.1 changed symlink target from libelf-0.189.so to libelf-0.190.so /usr/lib/libasm-0.189.so moved to /usr/lib/libasm-0.190.so /usr/lib/libdebuginfod-0.189.so moved to /usr/lib/libdebuginfod-0.190.so /usr/lib/libdw-0.189.so moved to /usr/lib/libdw-0.190.so /usr/lib/libelf-0.189.so moved to /usr/lib/libelf-0.190.so /usr/bin/eu-srcfiles was added
0001-elfutils-upgrade-0.189-0.190.patch
Description: Binary data
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#193108): https://lists.openembedded.org/g/openembedded-core/message/193108 Mute This Topic: https://lists.openembedded.org/mt/103461905/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
