This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 2017f387770 Add support for the DW_FORM_strx* forms to the BFD library. new f3a5df7bd65 gdb: unify parts of the Linux and FreeBSD core dumping code new b63a5e38efa bfd/binutils: support for gdb target descriptions in the core file new 95ce627aeb9 gdb: write target description into core file new 0897bb7d6dc bfd/riscv: prepare to handle bare metal core dump creation new fb8f3fc0c3c gdb/riscv: introduce bare metal core dump support new db6092f3aec bfd/binutils: add support for RISC-V CSRs in core files new d782d24b329 gdb/riscv: make riscv target description names global new b2668f28eee gdb/riscv: write CSRs into baremetal core dumps
The 8 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: bfd/ChangeLog | 27 ++++++ bfd/elf-bfd.h | 4 + bfd/elf.c | 70 ++++++++++++++++ bfd/elfnn-riscv.c | 84 ++++++++++++++++++- binutils/ChangeLog | 10 +++ binutils/readelf.c | 4 + gdb/ChangeLog | 79 ++++++++++++++++++ gdb/Makefile.in | 6 ++ gdb/configure | 3 +- gdb/configure.ac | 3 +- gdb/configure.tgt | 2 +- gdb/corelow.c | 24 ++++++ gdb/elf-none-tdep.c | 126 ++++++++++++++++++++++++++++ gdb/{gcore.h => elf-none-tdep.h} | 21 +++-- gdb/fbsd-tdep.c | 137 ++----------------------------- gdb/gcore-elf.c | 166 +++++++++++++++++++++++++++++++++++++ gdb/gcore-elf.h | 47 +++++++++++ gdb/gcore.c | 21 +++++ gdb/gcore.h | 9 ++ gdb/linux-tdep.c | 146 +++------------------------------ gdb/riscv-none-tdep.c | 173 +++++++++++++++++++++++++++++++++++++++ gdb/riscv-tdep.c | 14 +++- gdb/riscv-tdep.h | 3 + include/ChangeLog | 10 +++ include/elf/common.h | 6 ++ 25 files changed, 913 insertions(+), 282 deletions(-) create mode 100644 gdb/elf-none-tdep.c copy gdb/{gcore.h => elf-none-tdep.h} (62%) create mode 100644 gdb/gcore-elf.c create mode 100644 gdb/gcore-elf.h create mode 100644 gdb/riscv-none-tdep.c