touching up after pull request 6
authorEli Bendersky <eliben@gmail.com>
Thu, 17 Jan 2013 13:41:22 +0000 (05:41 -0800)
committerEli Bendersky <eliben@gmail.com>
Thu, 17 Jan 2013 13:41:22 +0000 (05:41 -0800)
CHANGES
elftools/elf/elffile.py
test/test_arm_support.py

diff --git a/CHANGES b/CHANGES
index da3262f755674ba44358ee1f3dd1f2a1e8491633..4eab25c42c49bfc7a476022acdb6542958ca20e1 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,7 @@ Changelog
     file & line information from an address.
   - Issue #7: parsing incorrect DWARF was made a bit more forgiving for cases
     where serialized DIE trees have extra NULLs at the end.
+  - Pull request 6: very initial support for ARM ELF files.
 
 + Version 0.20 (27.01.2012)
 
index 51a645d18420b2390c05f7179b7afbb046215d1f..4814c7f7998571e481784c10bec96ba7df14579f 100644 (file)
@@ -149,7 +149,7 @@ class ELFFile(object):
 
     def get_machine_arch(self):
         """ Return the machine architecture, as detected from the ELF header.
-            At the moment the only supported architectures are x86 and x64.
+            Not all architectures are supported at the moment.
         """
         if self['e_machine'] == 'EM_X86_64':
             return 'x64'
index 6ea3969c82f5fc2aed4aa4d2e54a2223ddd087dd..71d8fc691e1d67bcc826a9fd07f02b8d8397735c 100644 (file)
@@ -21,3 +21,4 @@ class TestARMSupport(unittest.TestCase):
 
 if __name__ == '__main__':
     sys.exit(unittest.main())
+