* fbsd-proc.c (fbsd_make_corefile_notes): Put a "FreeBSD" label in

the ELF header.
This commit is contained in:
Mark Kettenis 2003-10-30 19:29:40 +00:00
parent 686e72d729
commit 9a12a2a0ed
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-10-30 Mark Kettenis <kettenis@gnu.org>
* fbsd-proc.c (fbsd_make_corefile_notes): Put a "FreeBSD" label in
the ELF header.
2003-10-29 Mark Kettenis <kettenis@gnu.org>
* config/i386/fbsd.mt (TDEPFILES): Add corelow.o.

View File

@ -127,6 +127,11 @@ fbsd_make_corefile_notes (bfd *obfd, int *note_size)
gregset_t gregs;
fpregset_t fpregs;
char *note_data = NULL;
Elf_Internal_Ehdr *i_ehdrp;
/* Put a "FreeBSD" label in the ELF header. */
i_ehdrp = elf_elfheader (obfd);
i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_FREEBSD;
fill_gregset (&gregs, -1);
note_data = elfcore_write_prstatus (obfd, note_data, note_size,