mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
elfutils: 0.163 -> 0.164
Update patches from debian http://ftp.de.debian.org/debian/pool/main/e/elfutils/elfutils_0.164-1.debian.tar.xz (From OE-Core rev: 5bf174ee745929a4f80095e9de3621d1ccfc9511) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
38901a79ac
commit
aaafe33b79
@@ -0,0 +1,22 @@
|
||||
From: Kurt Roeckx <kurt@roeckx.be>
|
||||
Subject: Make readelf -w output debug information on mips
|
||||
Bug-Debian: http://bugs.debian.org/662041
|
||||
Forwarded: not-needed
|
||||
|
||||
Upstreams wants a change where this is handled by a hook that needs
|
||||
to be filled in by the backend for the arch.
|
||||
|
||||
Index: elfutils-0.164/src/readelf.c
|
||||
===================================================================
|
||||
--- elfutils-0.164.orig/src/readelf.c
|
||||
+++ elfutils-0.164/src/readelf.c
|
||||
@@ -8218,7 +8218,8 @@ print_debug (Dwfl_Module *dwflmod, Ebl *
|
||||
GElf_Shdr shdr_mem;
|
||||
GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
|
||||
|
||||
- if (shdr != NULL && shdr->sh_type == SHT_PROGBITS)
|
||||
+ if (shdr != NULL && (
|
||||
+ (shdr->sh_type == SHT_PROGBITS) || (shdr->sh_type == SHT_MIPS_DWARF)))
|
||||
{
|
||||
static const struct
|
||||
{
|
||||
Reference in New Issue
Block a user