diff options
author | Stephen Fisher <sfisher@panix.com> | 2015-10-27 11:32:38 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2015-10-27 11:32:38 +0000 |
commit | c6056a744af028824797e769ddb71927740be88a (patch) | |
tree | 07458a02b5aef1f4adbe2488b591a9aba65c6ed6 /include/elf | |
parent | d6867a7559ceb7380fc229f948fd5fd910404643 (diff) | |
download | gdb-c6056a744af028824797e769ddb71927740be88a.zip gdb-c6056a744af028824797e769ddb71927740be88a.tar.gz gdb-c6056a744af028824797e769ddb71927740be88a.tar.bz2 |
Add support to readelf for reading NetBSD ELF core notes.
binutils * binutils.c (process_netbsd_elf_note): New function.
(process_note): Call the new function for NetBSD core notes.
include * common.h (NT_NETBSD_MARCH): Define.
Diffstat (limited to 'include/elf')
-rw-r--r-- | include/elf/ChangeLog | 4 | ||||
-rw-r--r-- | include/elf/common.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index 08b6701..8b354e1 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,7 @@ +2015-10-27 Stephen Fisher <sfisher@panix.com> + + * common.h (NT_NETBSD_MARCH): Define. + 2015-10-22 H.J. Lu <hongjiu.lu@intel.com> * x86-64.h (R_X86_64_GOTPCRELX): New. diff --git a/include/elf/common.h b/include/elf/common.h index bb15b7d..5c20c5e 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -642,6 +642,7 @@ /* Values for NetBSD .note.netbsd.ident notes. Note name is "NetBSD". */ #define NT_NETBSD_IDENT 1 +#define NT_NETBSD_MARCH 5 /* Values for OpenBSD .note.openbsd.ident notes. Note name is "OpenBSD". */ |