diff options
Diffstat (limited to 'meta/recipes-devtools/elfutils/files/debian/mips_readelf_w.patch')
-rw-r--r-- | meta/recipes-devtools/elfutils/files/debian/mips_readelf_w.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-devtools/elfutils/files/debian/mips_readelf_w.patch b/meta/recipes-devtools/elfutils/files/debian/mips_readelf_w.patch deleted file mode 100644 index c6d42e163a..0000000000 --- a/meta/recipes-devtools/elfutils/files/debian/mips_readelf_w.patch +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | From 7bdc83296865cf2b2a5615dbdb7ac0d441fb1849 Mon Sep 17 00:00:00 2001 | ||
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | ||
3 | Date: Wed, 21 Aug 2019 16:55:01 +0800 | ||
4 | Subject: [PATCH] mips_readelf_w | ||
5 | |||
6 | Upstream-Status: Pending [from debian] | ||
7 | |||
8 | Rebase to 0.177 | ||
9 | |||
10 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
11 | --- | ||
12 | src/readelf.c | 3 ++- | ||
13 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/src/readelf.c b/src/readelf.c | ||
16 | index 2084fb1..5c02a9b 100644 | ||
17 | --- a/src/readelf.c | ||
18 | +++ b/src/readelf.c | ||
19 | @@ -11256,7 +11256,8 @@ print_debug (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr) | ||
20 | GElf_Shdr shdr_mem; | ||
21 | GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem); | ||
22 | |||
23 | - if (shdr != NULL && shdr->sh_type == SHT_PROGBITS) | ||
24 | + if (shdr != NULL && ( | ||
25 | + (shdr->sh_type == SHT_PROGBITS) || (shdr->sh_type == SHT_MIPS_DWARF))) | ||
26 | { | ||
27 | static const struct | ||
28 | { | ||
29 | -- | ||
30 | 2.7.4 | ||
31 | |||