This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-lts-defconfig in repository toolchain/ci/binutils-gdb.
from 4ca51187d2 Constify target_ops::follow_exec adds 016181423b Automatic date update in version.in adds 82d7a6f4e3 Re: Have the linker report an error if the same script is us [...] adds 2376c3702e config.guess,config.sub: synchronize with config project mas [...] adds 8ebe621240 include: add elf/bpf.h adds fd0de36e27 bfd: add support for eBPF adds ea195bb04c cpu: add eBPF cpu description adds 79472b4532 opcodes: add support for eBPF adds f8861f5dc2 gas: add support for eBPF adds 8376927b2c ld: add support for eBPF adds aca4efc7a4 binutils: add support for eBPF adds 27830e0d38 binutils: add myself as the maintainer for BPF new 45d5293f6e bfd: fix build with --enable-targets=all in 32-bit hosts
The 1 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: ChangeLog | 7 + bfd/ChangeLog | 26 + bfd/Makefile.am | 4 + bfd/Makefile.in | 7 + bfd/archures.c | 4 + bfd/bfd-in2.h | 9 + bfd/config.bfd | 14 + bfd/configure | 30 +- bfd/configure.ac | 2 + bfd/cpu-bpf.c | 41 + bfd/elf64-bpf.c | 463 ++++++ bfd/libbfd.h | 5 + bfd/reloc.c | 13 + bfd/targets.c | 7 + bfd/version.h | 2 +- binutils/ChangeLog | 13 + binutils/MAINTAINERS | 1 + binutils/readelf.c | 8 + binutils/testsuite/binutils-all/nm.exp | 3 +- config.guess | 198 ++- config.sub | 29 +- cpu/ChangeLog | 5 + cpu/bpf.cpu | 647 +++++++++ cpu/bpf.opc | 191 +++ gas/ChangeLog | 45 + gas/Makefile.am | 2 + gas/Makefile.in | 6 + gas/config/tc-bpf.c | 354 +++++ gas/config/tc-bpf.h | 51 + gas/configure | 38 +- gas/configure.ac | 6 + gas/configure.tgt | 1 + gas/doc/Makefile.am | 1 + gas/doc/Makefile.in | 2 + gas/doc/all.texi | 1 + gas/doc/as.texi | 34 + gas/doc/c-bpf.texi | 364 +++++ gas/testsuite/gas/all/gas.exp | 3 + gas/testsuite/gas/all/org-1.l | 2 +- gas/testsuite/gas/all/org-1.s | 2 + gas/testsuite/gas/bpf/alu-be.d | 59 + gas/testsuite/gas/bpf/alu.d | 58 + gas/testsuite/gas/bpf/alu.s | 51 + gas/testsuite/gas/bpf/alu32-be.d | 65 + gas/testsuite/gas/bpf/alu32.d | 64 + gas/testsuite/gas/bpf/alu32.s | 57 + gas/testsuite/gas/bpf/atomic-be.d | 12 + gas/testsuite/gas/bpf/atomic.d | 11 + gas/testsuite/gas/bpf/atomic.s | 5 + gas/testsuite/gas/bpf/bpf.exp | 38 + gas/testsuite/gas/bpf/call-be.d | 19 + gas/testsuite/gas/bpf/call.d | 18 + gas/testsuite/gas/bpf/call.s | 11 + gas/testsuite/gas/bpf/exit-be.d | 11 + gas/testsuite/gas/bpf/exit.d | 10 + gas/testsuite/gas/bpf/exit.s | 2 + gas/testsuite/gas/bpf/jump-be.d | 32 + gas/testsuite/gas/bpf/jump.d | 31 + gas/testsuite/gas/bpf/jump.s | 25 + gas/testsuite/gas/bpf/lddw-be.d | 18 + gas/testsuite/gas/bpf/lddw.d | 17 + gas/testsuite/gas/bpf/lddw.s | 6 + gas/testsuite/gas/bpf/mem-be.d | 30 + gas/testsuite/gas/bpf/mem.d | 29 + gas/testsuite/gas/bpf/mem.s | 24 + include/ChangeLog | 4 + include/elf/bpf.h | 45 + ld/ChangeLog | 25 + ld/Makefile.am | 2 + ld/Makefile.in | 4 + ld/configure | 28 +- ld/configure.tgt | 1 + ld/emulparams/elf64bpf.sh | 10 + ld/ldfile.c | 72 +- ld/testsuite/ld-bpf/bar.s | 5 + ld/testsuite/ld-bpf/baz.s | 5 + ld/testsuite/ld-bpf/bpf.exp | 29 + ld/testsuite/ld-bpf/call-1.d | 23 + ld/testsuite/ld-bpf/foo.s | 5 + ld/testsuite/ld-bpf/jump-1.d | 23 + ld/testsuite/lib/ld-lib.exp | 1 + opcodes/ChangeLog | 24 + opcodes/Makefile.am | 17 + opcodes/Makefile.in | 23 + opcodes/bpf-asm.c | 590 ++++++++ opcodes/bpf-desc.c | 1638 +++++++++++++++++++++ opcodes/bpf-desc.h | 266 ++++ opcodes/bpf-dis.c | 624 ++++++++ opcodes/bpf-ibld.c | 956 +++++++++++++ opcodes/bpf-opc.c | 1495 +++++++++++++++++++ opcodes/bpf-opc.h | 151 ++ opcodes/configure | 19 +- opcodes/configure.ac | 1 + opcodes/disassemble.c | 35 + opcodes/disassemble.h | 1 + readline/support/config.guess | 1281 +++++++++-------- readline/support/config.sub | 2445 +++++++++++++++++--------------- 97 files changed, 11365 insertions(+), 1827 deletions(-) create mode 100644 bfd/cpu-bpf.c create mode 100644 bfd/elf64-bpf.c create mode 100644 cpu/bpf.cpu create mode 100644 cpu/bpf.opc create mode 100644 gas/config/tc-bpf.c create mode 100644 gas/config/tc-bpf.h create mode 100644 gas/doc/c-bpf.texi create mode 100644 gas/testsuite/gas/bpf/alu-be.d create mode 100644 gas/testsuite/gas/bpf/alu.d create mode 100644 gas/testsuite/gas/bpf/alu.s create mode 100644 gas/testsuite/gas/bpf/alu32-be.d create mode 100644 gas/testsuite/gas/bpf/alu32.d create mode 100644 gas/testsuite/gas/bpf/alu32.s create mode 100644 gas/testsuite/gas/bpf/atomic-be.d create mode 100644 gas/testsuite/gas/bpf/atomic.d create mode 100644 gas/testsuite/gas/bpf/atomic.s create mode 100644 gas/testsuite/gas/bpf/bpf.exp create mode 100644 gas/testsuite/gas/bpf/call-be.d create mode 100644 gas/testsuite/gas/bpf/call.d create mode 100644 gas/testsuite/gas/bpf/call.s create mode 100644 gas/testsuite/gas/bpf/exit-be.d create mode 100644 gas/testsuite/gas/bpf/exit.d create mode 100644 gas/testsuite/gas/bpf/exit.s create mode 100644 gas/testsuite/gas/bpf/jump-be.d create mode 100644 gas/testsuite/gas/bpf/jump.d create mode 100644 gas/testsuite/gas/bpf/jump.s create mode 100644 gas/testsuite/gas/bpf/lddw-be.d create mode 100644 gas/testsuite/gas/bpf/lddw.d create mode 100644 gas/testsuite/gas/bpf/lddw.s create mode 100644 gas/testsuite/gas/bpf/mem-be.d create mode 100644 gas/testsuite/gas/bpf/mem.d create mode 100644 gas/testsuite/gas/bpf/mem.s create mode 100644 include/elf/bpf.h create mode 100644 ld/emulparams/elf64bpf.sh create mode 100644 ld/testsuite/ld-bpf/bar.s create mode 100644 ld/testsuite/ld-bpf/baz.s create mode 100644 ld/testsuite/ld-bpf/bpf.exp create mode 100644 ld/testsuite/ld-bpf/call-1.d create mode 100644 ld/testsuite/ld-bpf/foo.s create mode 100644 ld/testsuite/ld-bpf/jump-1.d create mode 100644 opcodes/bpf-asm.c create mode 100644 opcodes/bpf-desc.c create mode 100644 opcodes/bpf-desc.h create mode 100644 opcodes/bpf-dis.c create mode 100644 opcodes/bpf-ibld.c create mode 100644 opcodes/bpf-opc.c create mode 100644 opcodes/bpf-opc.h