From: Yann Rouillard Date: Fri, 10 May 2013 02:17:24 +0000 (+0200) Subject: add sun specific dynamic tags X-Git-Tag: v0.22~65 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f8f6c003486b7974c9b931069cefd11e75adb9f8;p=pyelftools.git add sun specific dynamic tags --- diff --git a/elftools/elf/enums.py b/elftools/elf/enums.py index 0a90c19..aca085f 100644 --- a/elftools/elf/enums.py +++ b/elftools/elf/enums.py @@ -302,6 +302,24 @@ ENUM_D_TAG = dict( DT_PREINIT_ARRAYSZ=33, DT_NUM=34, DT_LOOS=0x6000000d, + DT_SUNW_AUXILIARY=0x6000000d, + DT_SUNW_RTLDINF=0x6000000e, + DT_SUNW_FILTER=0x6000000f, + DT_SUNW_CAP=0x60000010, + DT_SUNW_SYMTAB=0x60000011, + DT_SUNW_SYMSZ=0x60000012, + DT_SUNW_ENCODING=0x60000013, + DT_SUNW_SORTENT=0x60000013, + DT_SUNW_SYMSORT=0x60000014, + DT_SUNW_SYMSORTSZ=0x60000015, + DT_SUNW_TLSSORT=0x60000016, + DT_SUNW_TLSSORTSZ=0x60000017, + DT_SUNW_CAPINFO=0x60000018, + DT_SUNW_STRPAD=0x60000019, + DT_SUNW_CAPCHAIN=0x6000001a, + DT_SUNW_LDMACH=0x6000001b, + DT_SUNW_CAPCHAINENT=0x6000001d, + DT_SUNW_CAPCHAINSZ=0x6000001f, DT_HIOS=0x6ffff000, DT_LOPROC=0x70000000, DT_HIPROC=0x7fffffff,