summaryrefslogtreecommitdiffstats
path: root/patches/elfutils-0.176/mips_readelf_w.patch
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-03-04 13:26:25 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-03-04 15:10:56 +0100
commit1c4b8b66928c8d50860f1fe65a32d194aee6a7e5 (patch)
treec467ca9a8690d21416ae38f8ed992c7ac1fccc0d /patches/elfutils-0.176/mips_readelf_w.patch
parentac816084d9dca9f6af991570666e29739a60a132 (diff)
downloadptxdist-1c4b8b66928c8d50860f1fe65a32d194aee6a7e5.tar.gz
ptxdist-1c4b8b66928c8d50860f1fe65a32d194aee6a7e5.tar.xz
elfutils: rework patches
Drop unnecessary patches and script the patch import to make it reproducible. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'patches/elfutils-0.176/mips_readelf_w.patch')
-rw-r--r--patches/elfutils-0.176/mips_readelf_w.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/patches/elfutils-0.176/mips_readelf_w.patch b/patches/elfutils-0.176/mips_readelf_w.patch
deleted file mode 100644
index c88803740..000000000
--- a/patches/elfutils-0.176/mips_readelf_w.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-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.175/src/readelf.c
-===================================================================
---- elfutils-0.175.orig/src/readelf.c
-+++ elfutils-0.175/src/readelf.c
-@@ -11133,7 +11133,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
- {