Handle the NT_ARM_VFP core dump note on FreeBSD.

bfd/ChangeLog:

	* elf.c (elfcore_grok_freebsd_note): Handle NT_ARM_VFP.
This commit is contained in:
John Baldwin 2017-10-05 09:50:01 -07:00
parent 12c4bd7f53
commit 6d5be5d6b8
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2017-10-05 John Baldwin <jhb@FreeBSD.org>
* elf.c (elfcore_grok_freebsd_note): Handle NT_ARM_VFP.
2017-10-05 H.J. Lu <hongjiu.lu@intel.com>
* elf32-tilepro.c (readonly_dynrelocs): Dump dynamic relocation

View file

@ -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;
}