[Wisp-cvs] wisp/users/dig elf.py,1.30,1.31
Status: Alpha
Brought to you by:
digg
From: <di...@us...> - 2003-04-14 00:59:35
|
Update of /cvsroot/wisp/wisp/users/dig In directory sc8-pr-cvs1:/tmp/cvs-serv23362 Modified Files: elf.py Log Message: better attributes for relocation sections Index: elf.py =================================================================== RCS file: /cvsroot/wisp/wisp/users/dig/elf.py,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- elf.py 14 Apr 2003 00:52:39 -0000 1.30 +++ elf.py 14 Apr 2003 00:59:32 -0000 1.31 @@ -438,6 +438,8 @@ '.bss': SHT.NOBITS, '.dynstr': SHT.STRTAB, '.note': SHT.NOTE, + '.rel': SHT.REL, + '.rela': SHT.RELA, '.shstrtab': SHT.STRTAB, '.symstr': SHT.STRTAB, '.symtab': SHT.SYMTAB, @@ -451,6 +453,7 @@ return infer_by_prefix(name, {'': 'rw--', '.bss': 'rw--', '.comment': '----', + '.rel': '----', '.data': 'rw--', '.debug': '----', '.dynstr': 'a--s', |