mirror of
https://git.yoctoproject.org/poky
synced 2026-07-26 19:17:07 +00:00
elfutils: 0.162 -> 0.163
(From OE-Core rev: cb8fc7521cdaaa7b8f82a0c6dfc6526778c99099) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
d32b383c3a
commit
f9ac3f3e20
@@ -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.153/src/readelf.c
|
||||
===================================================================
|
||||
--- elfutils-0.153.orig/src/readelf.c 2012-08-10 22:01:55.000000000 +0200
|
||||
+++ elfutils-0.153/src/readelf.c 2012-09-18 21:46:27.000000000 +0200
|
||||
@@ -7364,7 +7364,8 @@
|
||||
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