CVS commit: src/sys/arch/i386/conf

2016-03-26 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Mar 27 05:14:14 UTC 2016

Added Files:
src/sys/arch/i386/conf: GENERIC_PAE

Log Message:
add a normal kernel that builds with PAE enabled.  this is not yet
hooked into the normal build, but this is a working configuration
and on my 16GB test system, works fine.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/sys/arch/i386/conf/GENERIC_PAE

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/gcc/dist/gcc/config/i386

2016-03-26 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Mar 27 04:18:09 UTC 2016

Modified Files:
src/external/gpl3/gcc/dist/gcc/config/i386: netbsd64.h

Log Message:
don't set PREFERRED_STACK_BOUNDARY_DEFAULT, in particular, don't set it
to 64 (8 bytes) for 64-bit targets, where 16 byte alignment is required.
this fixes GCC 5 and ssh on modern intel cpus, and perhaps more.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/gcc/dist/gcc/config/i386/netbsd64.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/gcc

2016-03-26 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Mar 27 00:07:20 UTC 2016

Modified Files:
src/external/gpl3/gcc: README.gcc53

Log Message:
- figured out the ldap/ssh problem.  was miscompiled crtbeginS.o which
  has been worked around.
- update some testing info.
- merge or1k/riscv descriptions that are actually the same problem.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/external/gpl3/gcc/README.gcc53

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/csu/common

2016-03-26 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Mar 27 00:03:06 UTC 2016

Modified Files:
src/lib/csu/common: Makefile.inc

Log Message:
add a hack for GCC 5 and non-x86 platforms:

build crtbeginS.o with -O1 as GCC tries to be very smart with the
__DTOR_LIST__ as it believes it knows the size of the array at
compile time (which is not true until link time).  on SPARC and
MIPS, the result was emitting a call to 0.

technically, i believe that GCC isn't "wrong" to make this choice,
as the array is declared with a well-known initialiser size in the
crtbegin.c compilation unit, and we have noticed that the libgcc
version of this code has some hacks added, most likely to avoid
being bitten by this optimisation.

this makes sshd work for me on earm and sparc with GCC 5.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/lib/csu/common/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/mips/mips

2016-03-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Mar 26 17:40:02 UTC 2016

Modified Files:
src/sys/arch/mips/mips: mips_fpu.c

Log Message:
Do not touch FP register on softfloat kernels.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/mips/mips/mips_fpu.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib/sets/lists/debug

2016-03-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Mar 26 17:16:48 UTC 2016

Modified Files:
src/distrib/sets/lists/debug: ad.mips

Log Message:
Fix set lists for mips64 and gcc 5.3


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/distrib/sets/lists/debug/ad.mips

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/newsmips/dev

2016-03-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Mar 26 17:14:38 UTC 2016

Modified Files:
src/sys/arch/newsmips/dev: scsi_1185.c

Log Message:
David Binderman in PR port-newsmips/51014:
Move initialization of remain_cnt up to the declaration.
XXX the #ifdef here does not make much sense to me, but I know nothing
about the hardware. I'd guess it could be removed or inverted and #error'd
instead.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/newsmips/dev/scsi_1185.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/rockchip

2016-03-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Mar 26 17:04:03 UTC 2016

Modified Files:
src/sys/arch/arm/rockchip: rockchip_emac.c

Log Message:
David Binderman in port-arm/51013: masking of rxbdtlen happened before
the value was read - move it down a few lines.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/arm/rockchip/rockchip_emac.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/miscfs/specfs

2016-03-26 Thread Juergen Hannken-Illjes
Module Name:src
Committed By:   hannken
Date:   Sat Mar 26 14:58:13 UTC 2016

Modified Files:
src/sys/miscfs/specfs: spec_vnops.c

Log Message:
Whhen spec_strategy() extracts v_rdev take care to avoid a
race with spec_revoke.

Fixes PR kern/50467 Panic from disconnecting phone while reading its contents


To generate a diff of this commit:
cvs rdiff -u -r1.160 -r1.161 src/sys/miscfs/specfs/spec_vnops.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/libc/compat/arch/mips/gen

2016-03-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Mar 26 11:57:32 UTC 2016

Modified Files:
src/lib/libc/compat/arch/mips/gen: compat_setjmp.S

Log Message:
Do not store FP registers in softfloat userland


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/libc/compat/arch/mips/gen/compat_setjmp.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/sparc64/include

2016-03-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Mar 26 11:49:10 UTC 2016

Modified Files:
src/sys/arch/sparc64/include: vmparam.h

Log Message:
Fix comment


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/sparc64/include/vmparam.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [nick-nhusb] src/sys/dev/usb

2016-03-26 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Mar 26 11:42:44 UTC 2016

Modified Files:
src/sys/dev/usb [nick-nhusb]: ehci.c ehcireg.h ehcivar.h

Log Message:
Grab sc_istthreshhold (not used as yet)


To generate a diff of this commit:
cvs rdiff -u -r1.234.2.94 -r1.234.2.95 src/sys/dev/usb/ehci.c
cvs rdiff -u -r1.34.14.12 -r1.34.14.13 src/sys/dev/usb/ehcireg.h
cvs rdiff -u -r1.42.14.23 -r1.42.14.24 src/sys/dev/usb/ehcivar.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [nick-nhusb] src/sys/dev/usb

2016-03-26 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Mar 26 11:40:59 UTC 2016

Modified Files:
src/sys/dev/usb [nick-nhusb]: ehci.c

Log Message:
Re-org for clarity (sparams vs cparams)


To generate a diff of this commit:
cvs rdiff -u -r1.234.2.93 -r1.234.2.94 src/sys/dev/usb/ehci.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [nick-nhusb] src/sys/dev/usb

2016-03-26 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Mar 26 11:39:56 UTC 2016

Modified Files:
src/sys/dev/usb [nick-nhusb]: ehcireg.h

Log Message:
Trailing whitespace.


To generate a diff of this commit:
cvs rdiff -u -r1.34.14.11 -r1.34.14.12 src/sys/dev/usb/ehcireg.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2016-03-26 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sat Mar 26 10:40:05 UTC 2016

Modified Files:
src/doc: CHANGES

Log Message:
note (belatedly) gdb 7.10 import.


To generate a diff of this commit:
cvs rdiff -u -r1.2144 -r1.2145 src/doc/CHANGES

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/mk

2016-03-26 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sat Mar 26 10:38:22 UTC 2016

Modified Files:
src/share/mk: bsd.own.mk

Log Message:
switch sparc to GDB 7.10.  works for me.


To generate a diff of this commit:
cvs rdiff -u -r1.911 -r1.912 src/share/mk/bsd.own.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/mk

2016-03-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Mar 26 10:35:14 UTC 2016

Modified Files:
src/share/mk: bsd.own.mk

Log Message:
Switch playstation2 over to gcc 5.3, binutils 2.26 and gdb 7.10


To generate a diff of this commit:
cvs rdiff -u -r1.910 -r1.911 src/share/mk/bsd.own.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/gdb/lib

2016-03-26 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sat Mar 26 10:29:45 UTC 2016

Modified Files:
src/external/gpl3/gdb/lib/libbfd/arch/sparc: bfd_stdint.h targmatch.h
src/external/gpl3/gdb/lib/libdecnumber/arch/sparc: gstdint.h
src/external/gpl3/gdb/lib/libgdb/arch/sparc: config.h
src/external/gpl3/gdb/lib/libgdb/arch/sparc/build-gnulib: config.h
src/external/gpl3/gdb/lib/libiberty/arch/sparc: config.h defs.mk

Log Message:
mknative-gdb for sparc and gdb 7.10


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/gdb/lib/libbfd/arch/sparc/bfd_stdint.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gdb/lib/libbfd/arch/sparc/targmatch.h
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/gdb/lib/libdecnumber/arch/sparc/gstdint.h
cvs rdiff -u -r1.5 -r1.6 src/external/gpl3/gdb/lib/libgdb/arch/sparc/config.h
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/gdb/lib/libgdb/arch/sparc/build-gnulib/config.h
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/gdb/lib/libiberty/arch/sparc/config.h
cvs rdiff -u -r1.3 -r1.4 \
src/external/gpl3/gdb/lib/libiberty/arch/sparc/defs.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch

2016-03-26 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Mar 26 09:07:31 UTC 2016

Modified Files:
src/sys/arch/arm/nvidia: tegra_reg.h tegra_soc.c
src/sys/arch/evbarm/tegra: tegra_machdep.c

Log Message:
Restore HOST1X and AHB_A2 to pmap_devmap to give pmap less work to do


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sys/arch/arm/nvidia/tegra_reg.h
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/arm/nvidia/tegra_soc.c
cvs rdiff -u -r1.37 -r1.38 src/sys/arch/evbarm/tegra/tegra_machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2016-03-26 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sat Mar 26 09:02:58 UTC 2016

Modified Files:
src/external/gpl3/gcc/usr.bin/gcc/arch/alpha: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/arm: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/armeb: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/coldfire: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earm: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earmeb: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earmhf: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earmhfeb: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv4: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv4eb: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv6: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv6eb: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv6hf: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv6hfeb: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv7: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv7eb: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv7hf: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv7hfeb: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/hppa: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/i386: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/m68000: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/m68k: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/mips64eb: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/mips64el: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/mipseb: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/mipsel: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/powerpc: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/sh3eb: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/sh3el: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/sparc: auto-host.h configargs.h
src/external/gpl3/gcc/usr.bin/gcc/arch/sparc64: auto-host.h
src/external/gpl3/gcc/usr.bin/gcc/arch/x86_64: auto-host.h
src/tools/gcc: Makefile

Log Message:
use --with-diagnostics-color=auto-if-env as the default for GCC 5.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/alpha/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/arm/auto-host.h
cvs rdiff -u -r1.9 -r1.10 \
src/external/gpl3/gcc/usr.bin/gcc/arch/armeb/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/coldfire/auto-host.h
cvs rdiff -u -r1.9 -r1.10 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/auto-host.h
cvs rdiff -u -r1.7 -r1.8 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earmeb/auto-host.h
cvs rdiff -u -r1.8 -r1.9 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earmhf/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earmhfeb/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv4/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv4eb/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv6/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv6eb/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv6hf/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv6hfeb/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv7/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv7eb/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv7hf/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earmv7hfeb/auto-host.h
cvs rdiff -u -r1.7 -r1.8 \
src/external/gpl3/gcc/usr.bin/gcc/arch/hppa/auto-host.h
cvs rdiff -u -r1.8 -r1.9 \
src/external/gpl3/gcc/usr.bin/gcc/arch/i386/auto-host.h
cvs rdiff -u -r1.8 -r1.9 \
src/external/gpl3/gcc/usr.bin/gcc/arch/m68000/auto-host.h
cvs rdiff -u -r1.8 -r1.9 \
src/external/gpl3/gcc/usr.bin/gcc/arch/m68k/auto-host.h
cvs rdiff -u -r1.7 -r1.8 \
src/external/gpl3/gcc/usr.bin/gcc/arch/mips64eb/auto-host.h
cvs rdiff -u -r1.8 -r1.9 \
src/external/gpl3/gcc/usr.bin/gcc/arch/mips64el/auto-host.h
cvs rdiff -u -r1.8 -r1.9 \
src/external/gpl3/gcc/usr.bin/gcc/arch/mipseb/auto-host.h
cvs rdiff -u -r1.7 -r1.8 \
src/external/gpl3/gcc/usr.bin/gcc/arch/mipsel/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/powerpc/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/sh3eb/auto-host.h
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gcc/usr.bin/gcc/arch/s

CVS commit: src/external/gpl3/gcc

2016-03-26 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sat Mar 26 09:01:20 UTC 2016

Modified Files:
src/external/gpl3/gcc: README.gcc53

Log Message:
sparc has the ldap problem


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/external/gpl3/gcc/README.gcc53

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/binutils

2016-03-26 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sat Mar 26 08:52:22 UTC 2016

Modified Files:
src/external/gpl3/binutils/lib/libbfd/arch/mips64eb: bfd.h bfd_stdint.h
defs.mk
src/external/gpl3/binutils/lib/libbfd/arch/mips64el: bfd.h bfd_stdint.h
defs.mk
src/external/gpl3/binutils/lib/libiberty/arch/mips64eb: config.h
defs.mk
src/external/gpl3/binutils/usr.bin/ld/arch/mips64eb: defs.mk
ldemul-list.h
src/external/gpl3/binutils/usr.bin/ld/arch/mips64el: defs.mk
ldemul-list.h

Log Message:
mknative-binutils for mips64* and binutils 2.26.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/binutils/lib/libbfd/arch/mips64eb/bfd.h
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/binutils/lib/libbfd/arch/mips64eb/bfd_stdint.h
cvs rdiff -u -r1.5 -r1.6 \
src/external/gpl3/binutils/lib/libbfd/arch/mips64eb/defs.mk
cvs rdiff -u -r1.7 -r1.8 \
src/external/gpl3/binutils/lib/libbfd/arch/mips64el/bfd.h
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/binutils/lib/libbfd/arch/mips64el/bfd_stdint.h
cvs rdiff -u -r1.5 -r1.6 \
src/external/gpl3/binutils/lib/libbfd/arch/mips64el/defs.mk
cvs rdiff -u -r1.5 -r1.6 \
src/external/gpl3/binutils/lib/libiberty/arch/mips64eb/config.h \
src/external/gpl3/binutils/lib/libiberty/arch/mips64eb/defs.mk
cvs rdiff -u -r1.5 -r1.6 \
src/external/gpl3/binutils/usr.bin/ld/arch/mips64eb/defs.mk
cvs rdiff -u -r1.3 -r1.4 \
src/external/gpl3/binutils/usr.bin/ld/arch/mips64eb/ldemul-list.h
cvs rdiff -u -r1.5 -r1.6 \
src/external/gpl3/binutils/usr.bin/ld/arch/mips64el/defs.mk
cvs rdiff -u -r1.3 -r1.4 \
src/external/gpl3/binutils/usr.bin/ld/arch/mips64el/ldemul-list.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/nvidia

2016-03-26 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Mar 26 08:42:07 UTC 2016

Modified Files:
src/sys/arch/arm/nvidia: tegra_var.h

Log Message:
G/C old structs


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/arm/nvidia/tegra_var.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/binutils/dist/ld

2016-03-26 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Mar 26 08:41:16 UTC 2016

Modified Files:
src/external/gpl3/binutils/dist/ld: configure.tgt

Log Message:
Too many ;; in previous


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/external/gpl3/binutils/dist/ld/configure.tgt

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/binutils/dist/ld

2016-03-26 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Mar 26 08:39:55 UTC 2016

Modified Files:
src/external/gpl3/binutils/dist/ld: configure.tgt

Log Message:
Attempt to fix mergo for mips


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/external/gpl3/binutils/dist/ld/configure.tgt

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/gdb/lib

2016-03-26 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sat Mar 26 08:09:54 UTC 2016

Modified Files:
src/external/gpl3/gdb/lib/libbfd/arch/mips64eb: bfd-in3.h bfd.h
bfd_stdint.h defs.mk targmatch.h
src/external/gpl3/gdb/lib/libdecnumber/arch/mips64eb: gstdint.h
src/external/gpl3/gdb/lib/libgdb/arch/mips64eb: config.h
src/external/gpl3/gdb/lib/libgdb/arch/mips64eb/build-gnulib: config.h
src/external/gpl3/gdb/lib/libiberty/arch/mips64eb: config.h defs.mk

Log Message:
mknative-gdb for mips64eb.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gdb/lib/libbfd/arch/mips64eb/bfd-in3.h \
src/external/gpl3/gdb/lib/libbfd/arch/mips64eb/bfd.h \
src/external/gpl3/gdb/lib/libbfd/arch/mips64eb/defs.mk
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/gdb/lib/libbfd/arch/mips64eb/bfd_stdint.h
cvs rdiff -u -r1.7 -r1.8 \
src/external/gpl3/gdb/lib/libbfd/arch/mips64eb/targmatch.h
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/gdb/lib/libdecnumber/arch/mips64eb/gstdint.h
cvs rdiff -u -r1.8 -r1.9 \
src/external/gpl3/gdb/lib/libgdb/arch/mips64eb/config.h
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/gdb/lib/libgdb/arch/mips64eb/build-gnulib/config.h
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/gdb/lib/libiberty/arch/mips64eb/config.h
cvs rdiff -u -r1.3 -r1.4 \
src/external/gpl3/gdb/lib/libiberty/arch/mips64eb/defs.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/gdb/lib

2016-03-26 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sat Mar 26 07:38:56 UTC 2016

Modified Files:
src/external/gpl3/gdb/lib/libbfd/arch/mips64el: bfd-in3.h bfd.h
bfd_stdint.h defs.mk targmatch.h
src/external/gpl3/gdb/lib/libdecnumber/arch/mips64el: gstdint.h
src/external/gpl3/gdb/lib/libgdb/arch/mips64el: config.h
src/external/gpl3/gdb/lib/libgdb/arch/mips64el/build-gnulib: config.h

Log Message:
mknative-gdb for mips64el.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 \
src/external/gpl3/gdb/lib/libbfd/arch/mips64el/bfd-in3.h \
src/external/gpl3/gdb/lib/libbfd/arch/mips64el/bfd.h \
src/external/gpl3/gdb/lib/libbfd/arch/mips64el/defs.mk
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/gdb/lib/libbfd/arch/mips64el/bfd_stdint.h
cvs rdiff -u -r1.7 -r1.8 \
src/external/gpl3/gdb/lib/libbfd/arch/mips64el/targmatch.h
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/gdb/lib/libdecnumber/arch/mips64el/gstdint.h
cvs rdiff -u -r1.8 -r1.9 \
src/external/gpl3/gdb/lib/libgdb/arch/mips64el/config.h
cvs rdiff -u -r1.4 -r1.5 \
src/external/gpl3/gdb/lib/libgdb/arch/mips64el/build-gnulib/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/libc/compiler_rt

2016-03-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Mar 26 07:31:11 UTC 2016

Modified Files:
src/lib/libc/compiler_rt: Makefile.inc

Log Message:
Make sure to define __SOFT_FP__ when building a SOFTFLOAT userland


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/lib/libc/compiler_rt/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/external/bsd/compiler_rt/dist/lib/builtins

2016-03-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Mar 26 07:21:11 UTC 2016

Modified Files:
src/sys/external/bsd/compiler_rt/dist/lib/builtins: floatdidf.c
floatundidf.c

Log Message:
Make the softfloat variant compile


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r1.2 \
src/sys/external/bsd/compiler_rt/dist/lib/builtins/floatdidf.c
cvs rdiff -u -r1.1.1.3 -r1.2 \
src/sys/external/bsd/compiler_rt/dist/lib/builtins/floatundidf.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.