aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/elfutils/elfutils-0.166/0001-Ignore-differences-between-mips-machine-identifiers.patch
blob: 3f110f98fcc3dbe76a664d4dcb2609016f7e88a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
From 77cb4a53c270d5854d3af24f19547bc3de825233 Mon Sep 17 00:00:00 2001
From: James Cowgill <james410@cowgill.org.uk>
Date: Mon, 5 Jan 2015 15:16:58 +0000
Subject: [PATCH 1/3] 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>
---
 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 7429a89..d10e940 100644
--- a/backends/mips_init.c
+++ b/backends/mips_init.c
@@ -46,11 +46,7 @@ mips_init (elf, machine, eh, ehlen)
     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);
-- 
2.1.4