35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
|
From 788d9ca73b7ed1262c83580ccc62fb3625e603c3 Mon Sep 17 00:00:00 2001
|
||
|
From: Thomas Schwinge <thomas@codesourcery.com>
|
||
|
Date: Wed, 31 Oct 2012 20:41:50 +0100
|
||
|
Subject: [PATCH] include/elf.h: update for ELFOSABI_* changes.
|
||
|
|
||
|
ELFOSABI_GNU replaces ELFOSABI_LINUX, the latter is kept as a compatibility
|
||
|
alias, and ELFOSABI_HURD is removed. See the table on
|
||
|
<http://www.sco.com/developers/gabi/latest/ch4.eheader.html#osabi> for
|
||
|
reference.
|
||
|
|
||
|
Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
|
||
|
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
|
||
|
---
|
||
|
include/elf.h | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/include/elf.h b/include/elf.h
|
||
|
index ba3e804..470046e 100644
|
||
|
--- a/include/elf.h
|
||
|
+++ b/include/elf.h
|
||
|
@@ -148,8 +148,8 @@ typedef struct
|
||
|
#define ELFOSABI_SYSV 0 /* Alias. */
|
||
|
#define ELFOSABI_HPUX 1 /* HP-UX */
|
||
|
#define ELFOSABI_NETBSD 2 /* NetBSD. */
|
||
|
-#define ELFOSABI_LINUX 3 /* Linux. */
|
||
|
-#define ELFOSABI_HURD 4 /* GNU/Hurd */
|
||
|
+#define ELFOSABI_GNU 3 /* Object uses GNU ELF extensions. */
|
||
|
+#define ELFOSABI_LINUX ELFOSABI_GNU /* Compatibility alias. */
|
||
|
#define ELFOSABI_SOLARIS 6 /* Sun Solaris. */
|
||
|
#define ELFOSABI_AIX 7 /* IBM AIX. */
|
||
|
#define ELFOSABI_IRIX 8 /* SGI Irix. */
|
||
|
--
|
||
|
1.7.10.4
|
||
|
|