From 3643b1008c6a84d378db4697acef127b68a58a33 Mon Sep 17 00:00:00 2001 From: Michal Malik Date: Wed, 8 Jul 2015 13:16:14 +0200 Subject: [PATCH] Added DT_MIPS_* constants Defined from here http://lxr.free-electrons.com/source/arch/mips/include/asm/elf.h#L49 --- elftools/elf/enums.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/elftools/elf/enums.py b/elftools/elf/enums.py index 1469871..dbeb20e 100644 --- a/elftools/elf/enums.py +++ b/elftools/elf/enums.py @@ -406,6 +406,22 @@ ENUM_D_TAG = dict( DT_VERDEFNUM=0x6ffffffd, DT_VERNEED=0x6ffffffe, DT_VERNEEDNUM=0x6fffffff, + DT_MIPS_RLD_VERSION=0x70000001, + DT_MIPS_TIME_STAMP=0x70000002, + DT_MIPS_ICHECKSUM=0x70000003, + DT_MIPS_IVERSION=0x70000004, + DT_MIPS_FLAGS=0x70000005, + DT_MIPS_BASE_ADDRESS=0x70000006, + DT_MIPS_CONFLICT=0x70000008, + DT_MIPS_LIBLIST=0x70000009, + DT_MIPS_LOCAL_GOTNO=0x7000000a, + DT_MIPS_CONFLICTNO=0x7000000b, + DT_MIPS_LIBLISTNO=0x70000010, + DT_MIPS_SYMTABNO=0x70000011, + DT_MIPS_UNREFEXTNO=0x70000012, + DT_MIPS_GOTSYM=0x70000013, + DT_MIPS_HIPAGENO=0x70000014, + DT_MIPS_RLD_MAP=0x70000016, DT_AUXILIARY=0x7ffffffd, DT_FILTER=0x7fffffff, _default_=Pass, -- 2.30.2