From 6d5be5d6b8b4412e65bc037472aa2e727c25ccf5 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 5 Oct 2017 09:50:01 -0700 Subject: [PATCH] Handle the NT_ARM_VFP core dump note on FreeBSD. bfd/ChangeLog: * elf.c (elfcore_grok_freebsd_note): Handle NT_ARM_VFP. --- bfd/ChangeLog | 4 ++++ bfd/elf.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 84fad70..b4611e5 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2017-10-05 John Baldwin + + * elf.c (elfcore_grok_freebsd_note): Handle NT_ARM_VFP. + 2017-10-05 H.J. Lu * elf32-tilepro.c (readonly_dynrelocs): Dump dynamic relocation diff --git a/bfd/elf.c b/bfd/elf.c index fd7f773..02decea 100644 --- a/bfd/elf.c +++ b/bfd/elf.c @@ -10022,6 +10022,9 @@ elfcore_grok_freebsd_note (bfd *abfd, Elf_Internal_Note *note) return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.lwpinfo", note); + case NT_ARM_VFP: + return elfcore_grok_arm_vfp (abfd, note); + default: return TRUE; } -- 2.7.4