From 9a12a2a0ed0e3950b4a059eabe63cf55f0eebc03 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Thu, 30 Oct 2003 19:29:40 +0000 Subject: [PATCH] * fbsd-proc.c (fbsd_make_corefile_notes): Put a "FreeBSD" label in the ELF header. --- gdb/ChangeLog | 5 +++++ gdb/fbsd-proc.c | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e4de791..87a23aa 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2003-10-30 Mark Kettenis + + * fbsd-proc.c (fbsd_make_corefile_notes): Put a "FreeBSD" label in + the ELF header. + 2003-10-29 Mark Kettenis * config/i386/fbsd.mt (TDEPFILES): Add corelow.o. diff --git a/gdb/fbsd-proc.c b/gdb/fbsd-proc.c index 2c31768..8321cf5 100644 --- a/gdb/fbsd-proc.c +++ b/gdb/fbsd-proc.c @@ -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, -- 2.7.4