summaryrefslogtreecommitdiffstats
path: root/patches/elfutils-0.176/0005-Ignore-differences-between-mips-machine-identifiers.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/elfutils-0.176/0005-Ignore-differences-between-mips-machine-identifiers.patch')
-rw-r--r--patches/elfutils-0.176/0005-Ignore-differences-between-mips-machine-identifiers.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/patches/elfutils-0.176/0005-Ignore-differences-between-mips-machine-identifiers.patch b/patches/elfutils-0.176/0005-Ignore-differences-between-mips-machine-identifiers.patch
new file mode 100644
index 000000000..9860b4548
--- /dev/null
+++ b/patches/elfutils-0.176/0005-Ignore-differences-between-mips-machine-identifiers.patch
@@ -0,0 +1,34 @@
+From: James Cowgill <james410@cowgill.org.uk>
+Date: Mon, 5 Jan 2015 15:16:58 +0000
+Subject: [PATCH] Ignore differences between mips machine identifiers
+
+Little endian binaries actually use EM_MIPS so you can't tell the endianness
+from the elf machine id. Also, the EM_MIPS_RS3_LE machine is dead anyway (the
+kernel will not load binaries containing it).
+
+Signed-off-by: James Cowgill <james410@cowgill.org.uk>
+
+Imported from elfutils_0.176-1.debian.tar.xz
+
+Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
+---
+ backends/mips_init.c | 6 +-----
+ 1 file changed, 1 insertion(+), 5 deletions(-)
+
+diff --git a/backends/mips_init.c b/backends/mips_init.c
+index 975c04e1e168..8482e7fe6e96 100644
+--- a/backends/mips_init.c
++++ b/backends/mips_init.c
+@@ -45,11 +45,7 @@ mips_init (Elf *elf __attribute__ ((unused)),
+ return NULL;
+
+ /* We handle it. */
+- if (machine == EM_MIPS)
+- eh->name = "MIPS R3000 big-endian";
+- else if (machine == EM_MIPS_RS3_LE)
+- eh->name = "MIPS R3000 little-endian";
+-
++ eh->name = "MIPS";
+ mips_init_reloc (eh);
+ HOOK (eh, reloc_simple_type);
+ HOOK (eh, return_value_location);