patch-2.4.20 linux-2.4.20/include/asm-mips/elf.h
Next file: linux-2.4.20/include/asm-mips/fcntl.h
Previous file: linux-2.4.20/include/asm-mips/dma.h
Back to the patch index
Back to the overall index
- Lines: 33
- Date:
Thu Nov 28 15:53:15 2002
- Orig file:
linux-2.4.19/include/asm-mips/elf.h
- Orig date:
Fri Aug 2 17:39:45 2002
diff -urN linux-2.4.19/include/asm-mips/elf.h linux-2.4.20/include/asm-mips/elf.h
@@ -16,10 +16,11 @@
#define EF_MIPS_ARCH_3 0x20000000 /* -mips3 code. */
#define EF_MIPS_ARCH_4 0x30000000 /* -mips4 code. */
#define EF_MIPS_ARCH_5 0x40000000 /* -mips5 code. */
-#define EF_MIPS_ARCH_32 0x60000000 /* MIPS32 code. */
-#define EF_MIPS_ARCH_64 0x70000000 /* MIPS64 code. */
-#define EF_MIPS_ARCH_32R2 0x80000000 /* MIPS32 code. */
-#define EF_MIPS_ARCH_64R2 0x90000000 /* MIPS64 code. */
+#define EF_MIPS_ARCH_32 0x50000000 /* MIPS32 code. */
+#define EF_MIPS_ARCH_64 0x60000000 /* MIPS64 code. */
+/* The ABI of a file. */
+#define EF_MIPS_ABI_O32 0x00001000 /* O32 ABI. */
+#define EF_MIPS_ABI_O64 0x00002000 /* O32 extended for 64 bit. */
typedef unsigned long elf_greg_t;
typedef elf_greg_t elf_gregset_t[ELF_NGREG];
@@ -37,10 +38,12 @@
\
if (__h->e_machine != EM_MIPS) \
__res = 0; \
- if (((__h->e_flags & EF_MIPS_ARCH) != EF_MIPS_ARCH_1) && \
- ((__h->e_flags & EF_MIPS_ARCH) != EF_MIPS_ARCH_2) && \
- ((__h->e_flags & EF_MIPS_ARCH) != EF_MIPS_ARCH_32) && \
- ((__h->e_flags & EF_MIPS_ARCH) != EF_MIPS_ARCH_32R2)) \
+ if (__h->e_ident[EI_CLASS] != ELFCLASS32) \
+ __res = 0; \
+ if ((__h->e_flags & EF_MIPS_ABI2) != 0) \
+ __res = 0; \
+ if (((__h->e_flags & EF_MIPS_ABI) != 0) && \
+ ((__h->e_flags & EF_MIPS_ABI) != EF_MIPS_ABI_O32)) \
__res = 0; \
\
__res; \
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)