CVS commit: src/sys/dev

2012-08-05 Thread DEGROOTE Arnaud
Module Name:src
Committed By:   degroote
Date:   Sun Aug  5 09:16:54 UTC 2012

Modified Files:
src/sys/dev/ic: malo.c malovar.h
src/sys/dev/pci: if_malo_pci.c

Log Message:
Add pmf(9) handler to malo(4) wireless driver


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/ic/malo.c
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/ic/malovar.h
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/pci/if_malo_pci.c

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



CVS commit: src

2012-08-05 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sun Aug  5 14:28:50 UTC 2012

Modified Files:
src/distrib/sets/lists/man: mi
src/share/man/man4: Makefile
Added Files:
src/share/man/man4: uatp.4

Log Message:
Add man page for uatp(4).


To generate a diff of this commit:
cvs rdiff -u -r1.1400 -r1.1401 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.590 -r1.591 src/share/man/man4/Makefile
cvs rdiff -u -r0 -r1.1 src/share/man/man4/uatp.4

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



CVS commit: src/share/man/man4

2012-08-05 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sun Aug  5 14:35:45 UTC 2012

Modified Files:
src/share/man/man4: uatp.4

Log Message:
Quote arguments to .Cd in uatp(4) man page.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/share/man/man4/uatp.4

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



CVS commit: src/sys/kern

2012-08-05 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sun Aug  5 14:53:26 UTC 2012

Modified Files:
src/sys/kern: kern_exit.c

Log Message:
Use separate names for the multitudinous uses of `q' in exit1.

Now I can follow which process is which in this routine.

If I jiggle the whitespace so line numbers don't change, there is no
change in the output of `objdump -d kern_exit.o' for amd64.

ok abp


To generate a diff of this commit:
cvs rdiff -u -r1.240 -r1.241 src/sys/kern/kern_exit.c

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



CVS commit: src/sys/dev/ic

2012-08-05 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Aug  5 14:54:02 UTC 2012

Modified Files:
src/sys/dev/ic: mfi.c mfivar.h

Log Message:
Add some support for 64bit DMA but stick to 32bit DMA for now.
>From OpenBSD mfi.c rev 1.119.


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/sys/dev/ic/mfi.c
cvs rdiff -u -r1.15 -r1.16 src/sys/dev/ic/mfivar.h

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



CVS commit: src/sys/dev/pci

2012-08-05 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Aug  5 15:34:51 UTC 2012

Modified Files:
src/sys/dev/pci: pcidevs

Log Message:
Add LSI MegaRAID SAS2208


To generate a diff of this commit:
cvs rdiff -u -r1.1127 -r1.1128 src/sys/dev/pci/pcidevs

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



CVS commit: src/sys/dev/pci

2012-08-05 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Aug  5 15:35:33 UTC 2012

Modified Files:
src/sys/dev/pci: pcidevs.h pcidevs_data.h

Log Message:
Regen: add MegaRAID SAS2208


To generate a diff of this commit:
cvs rdiff -u -r1.1120 -r1.1121 src/sys/dev/pci/pcidevs.h
cvs rdiff -u -r1.1119 -r1.1120 src/sys/dev/pci/pcidevs_data.h

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



CVS commit: src/sys/rump/librump/rumpnet

2012-08-05 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Aug  5 15:36:19 UTC 2012

Modified Files:
src/sys/rump/librump/rumpnet: net_stub.c

Log Message:
Remove stubs which have been provided elsewhere for almost 2 years now.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/rump/librump/rumpnet/net_stub.c

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



CVS commit: src/sys/rump

2012-08-05 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Aug  5 15:37:39 UTC 2012

Modified Files:
src/sys/rump: Makefile.rump

Log Message:
Make it easy to turn -DDIAGNOSTIC off (RUMP_DIAGNOSTIC=no) and -DDEBUG
on (RUMP_DEBUG=yes).


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/sys/rump/Makefile.rump

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



CVS commit: src/sys/dev

2012-08-05 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Aug  5 15:50:49 UTC 2012

Modified Files:
src/sys/dev/ic: mfi.c mfivar.h
src/sys/dev/pci: mfi_pci.c

Log Message:
MFI_IOP_SKINNY is an enum not a single bit value, so it can't be used as
a bit flag. As sc_flags is really used to hold an enum mfi_iop value,
change it to enum mfi_iop and rename to sc_ioptype. While there init it
in mfi_attach() instead of mfi_pci_attach().


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/sys/dev/ic/mfi.c
cvs rdiff -u -r1.16 -r1.17 src/sys/dev/ic/mfivar.h
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/pci/mfi_pci.c

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

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sun Aug  5 16:34:06 UTC 2012

Added Files:
src/external/gpl3/binutils/lib/libbfd/arch/earm: bfd.h bfd_stdint.h
bfdver.h config.h defs.mk
src/external/gpl3/binutils/lib/libiberty/arch/earm: config.h defs.mk
src/external/gpl3/binutils/lib/libopcodes/arch/earm: config.h defs.mk
src/external/gpl3/binutils/usr.bin/common/arch/earm: config.h defs.mk
src/external/gpl3/binutils/usr.bin/gas/arch/earm: config.h defs.mk
itbl-cpu.h obj-format.h targ-cpu.h targ-env.h
src/external/gpl3/binutils/usr.bin/gprof/arch/earm: defs.mk gconfig.h
src/external/gpl3/binutils/usr.bin/ld/arch/earm: config.h defs.mk
ldemul-list.h

Log Message:
binutils mknative run for earm


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/external/gpl3/binutils/lib/libbfd/arch/earm/bfd.h \
src/external/gpl3/binutils/lib/libbfd/arch/earm/bfd_stdint.h \
src/external/gpl3/binutils/lib/libbfd/arch/earm/bfdver.h \
src/external/gpl3/binutils/lib/libbfd/arch/earm/config.h \
src/external/gpl3/binutils/lib/libbfd/arch/earm/defs.mk
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/binutils/lib/libiberty/arch/earm/config.h \
src/external/gpl3/binutils/lib/libiberty/arch/earm/defs.mk
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/binutils/lib/libopcodes/arch/earm/config.h \
src/external/gpl3/binutils/lib/libopcodes/arch/earm/defs.mk
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/binutils/usr.bin/common/arch/earm/config.h \
src/external/gpl3/binutils/usr.bin/common/arch/earm/defs.mk
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/binutils/usr.bin/gas/arch/earm/config.h \
src/external/gpl3/binutils/usr.bin/gas/arch/earm/defs.mk \
src/external/gpl3/binutils/usr.bin/gas/arch/earm/itbl-cpu.h \
src/external/gpl3/binutils/usr.bin/gas/arch/earm/obj-format.h \
src/external/gpl3/binutils/usr.bin/gas/arch/earm/targ-cpu.h \
src/external/gpl3/binutils/usr.bin/gas/arch/earm/targ-env.h
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/binutils/usr.bin/gprof/arch/earm/defs.mk \
src/external/gpl3/binutils/usr.bin/gprof/arch/earm/gconfig.h
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/binutils/usr.bin/ld/arch/earm/config.h \
src/external/gpl3/binutils/usr.bin/ld/arch/earm/defs.mk \
src/external/gpl3/binutils/usr.bin/ld/arch/earm/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/external/gpl3/gdb/dist

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sun Aug  5 16:51:46 UTC 2012

Modified Files:
src/external/gpl3/gdb/dist: config.sub

Log Message:
Allow arm*-netbsd*-eabi* to be recognized.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl3/gdb/dist/config.sub

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

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sun Aug  5 17:03:32 UTC 2012

Added Files:
src/external/gpl3/gcc/lib/libgomp/arch/earm: config.h libgomp.spec
libgomp_f.h omp.h
src/external/gpl3/gcc/lib/libiberty/arch/earm: config.h
src/external/gpl3/gcc/lib/libobjc/arch/earm: config.h defs.mk
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm: c++allocator.h
c++config.h config.h cxxabi_tweaks.h defs.mk gstdint.h
gthr-default.h gthr-posix.h gthr-single.h gthr-tpf.h gthr.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earm: all-tree.def auto-host.h
bconfig.h bversion.h config.h configargs.h defs.mk gthr-default.h
gtyp-input.list insn-modes.h multilib.h plugin-version.h tm.h
src/external/gpl3/gcc/usr.bin/libcpp/arch/earm: config.h
src/external/gpl3/gcc/usr.bin/libdecnumber/arch/earm: config.h

Log Message:
gcc4.5.3 configury for earm


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/external/gpl3/gcc/lib/libgomp/arch/earm/config.h \
src/external/gpl3/gcc/lib/libgomp/arch/earm/libgomp.spec \
src/external/gpl3/gcc/lib/libgomp/arch/earm/libgomp_f.h \
src/external/gpl3/gcc/lib/libgomp/arch/earm/omp.h
cvs rdiff -u -r0 -r1.1 src/external/gpl3/gcc/lib/libiberty/arch/earm/config.h
cvs rdiff -u -r0 -r1.1 src/external/gpl3/gcc/lib/libobjc/arch/earm/config.h \
src/external/gpl3/gcc/lib/libobjc/arch/earm/defs.mk
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/c++allocator.h \
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/c++config.h \
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/config.h \
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/cxxabi_tweaks.h \
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/defs.mk \
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/gstdint.h \
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/gthr-default.h \
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/gthr-posix.h \
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/gthr-single.h \
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/gthr-tpf.h \
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/gthr.h
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/all-tree.def \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/auto-host.h \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/bconfig.h \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/bversion.h \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/config.h \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/configargs.h \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/defs.mk \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/gthr-default.h \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/gtyp-input.list \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/insn-modes.h \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/multilib.h \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/plugin-version.h \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/tm.h
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/gcc/usr.bin/libcpp/arch/earm/config.h
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/gcc/usr.bin/libdecnumber/arch/earm/config.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/gdb/lib

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sun Aug  5 17:09:17 UTC 2012

Added Files:
src/external/gpl3/gdb/lib/libbfd/arch/earm: bfd-in3.h bfd.h
bfd_stdint.h bfdver.h config.h defs.mk targmatch.h
src/external/gpl3/gdb/lib/libdecnumber/arch/earm: config.h defs.mk
gstdint.h
src/external/gpl3/gdb/lib/libgdb/arch/earm: config.h defs.mk init.c
observer.h observer.inc version.c xml-builtin.c
src/external/gpl3/gdb/lib/libiberty/arch/earm: config.h defs.mk
src/external/gpl3/gdb/lib/libopcodes/arch/earm: config.h defs.mk
src/external/gpl3/gdb/lib/libreadline/arch/earm: config.h defs.mk

Log Message:
Add gdb configury for earm


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/external/gpl3/gdb/lib/libbfd/arch/earm/bfd-in3.h \
src/external/gpl3/gdb/lib/libbfd/arch/earm/bfd.h \
src/external/gpl3/gdb/lib/libbfd/arch/earm/bfd_stdint.h \
src/external/gpl3/gdb/lib/libbfd/arch/earm/bfdver.h \
src/external/gpl3/gdb/lib/libbfd/arch/earm/config.h \
src/external/gpl3/gdb/lib/libbfd/arch/earm/defs.mk \
src/external/gpl3/gdb/lib/libbfd/arch/earm/targmatch.h
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/gdb/lib/libdecnumber/arch/earm/config.h \
src/external/gpl3/gdb/lib/libdecnumber/arch/earm/defs.mk \
src/external/gpl3/gdb/lib/libdecnumber/arch/earm/gstdint.h
cvs rdiff -u -r0 -r1.1 src/external/gpl3/gdb/lib/libgdb/arch/earm/config.h \
src/external/gpl3/gdb/lib/libgdb/arch/earm/defs.mk \
src/external/gpl3/gdb/lib/libgdb/arch/earm/init.c \
src/external/gpl3/gdb/lib/libgdb/arch/earm/observer.h \
src/external/gpl3/gdb/lib/libgdb/arch/earm/observer.inc \
src/external/gpl3/gdb/lib/libgdb/arch/earm/version.c \
src/external/gpl3/gdb/lib/libgdb/arch/earm/xml-builtin.c
cvs rdiff -u -r0 -r1.1 src/external/gpl3/gdb/lib/libiberty/arch/earm/config.h \
src/external/gpl3/gdb/lib/libiberty/arch/earm/defs.mk
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/gdb/lib/libopcodes/arch/earm/config.h \
src/external/gpl3/gdb/lib/libopcodes/arch/earm/defs.mk
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/gdb/lib/libreadline/arch/earm/config.h \
src/external/gpl3/gdb/lib/libreadline/arch/earm/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/gcc

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sun Aug  5 17:21:47 UTC 2012

Modified Files:
src/external/gpl3/gcc/usr.bin/gcc/arch/powerpc: configargs.h
Added Files:
src/external/gpl3/gcc/lib/crtstuff/arch: earm.mk
src/external/gpl3/gcc/lib/libgcc/arch: earm.mk
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earm: defs.mk gcov-iov.h

Log Message:
Add a few missing for earm's gcc configury


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/external/gpl3/gcc/lib/crtstuff/arch/earm.mk
cvs rdiff -u -r0 -r1.1 src/external/gpl3/gcc/lib/libgcc/arch/earm.mk
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earm/defs.mk \
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earm/gcov-iov.h
cvs rdiff -u -r1.7 -r1.8 \
src/external/gpl3/gcc/usr.bin/gcc/arch/powerpc/configargs.h

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



CVS commit: src/sys/dev/ic

2012-08-05 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Aug  5 17:23:25 UTC 2012

Modified Files:
src/sys/dev/ic: mfi.c

Log Message:
sg64.len is 32bits, so use htole32()


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/sys/dev/ic/mfi.c

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



CVS commit: src/sys/dev/pci

2012-08-05 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Aug  5 17:40:01 UTC 2012

Modified Files:
src/sys/dev/pci: pcidevs

Log Message:
Add entries for puc(4) devices.


To generate a diff of this commit:
cvs rdiff -u -r1.1128 -r1.1129 src/sys/dev/pci/pcidevs

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



CVS commit: src/sys/dev/pci

2012-08-05 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Aug  5 17:42:01 UTC 2012

Modified Files:
src/sys/dev/pci: pucdata.c

Log Message:
Use PCI_VENDOR_* and PCI_PRODUCT_*. Fixes PR#46303.


To generate a diff of this commit:
cvs rdiff -u -r1.77 -r1.78 src/sys/dev/pci/pucdata.c

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



CVS commit: src/sys/dev/pci

2012-08-05 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Aug  5 17:55:22 UTC 2012

Modified Files:
src/sys/dev/pci: pcidevs.h pcidevs_data.h

Log Message:
regen.


To generate a diff of this commit:
cvs rdiff -u -r1.1121 -r1.1122 src/sys/dev/pci/pcidevs.h
cvs rdiff -u -r1.1120 -r1.1121 src/sys/dev/pci/pcidevs_data.h

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



CVS commit: src/external/lgpl3/gmp/lib/libgmp/arch/earm

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sun Aug  5 18:27:13 UTC 2012

Added Files:
src/external/lgpl3/gmp/lib/libgmp/arch/earm: Makefile.inc config.h
config.m4 gmp-mparam.h gmp.h mp.h

Log Message:
Add gmp configury from earm (copied from arm)


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 \
src/external/lgpl3/gmp/lib/libgmp/arch/earm/Makefile.inc \
src/external/lgpl3/gmp/lib/libgmp/arch/earm/config.h \
src/external/lgpl3/gmp/lib/libgmp/arch/earm/config.m4 \
src/external/lgpl3/gmp/lib/libgmp/arch/earm/gmp-mparam.h \
src/external/lgpl3/gmp/lib/libgmp/arch/earm/gmp.h \
src/external/lgpl3/gmp/lib/libgmp/arch/earm/mp.h

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



CVS commit: src/sys/net

2012-08-05 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Sun Aug  5 21:21:41 UTC 2012

Modified Files:
src/sys/net: if_types.h

Log Message:
Avoid ambiguity by having only one comment close mark.
PR 46771 by bsiegert.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/net/if_types.h

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



CVS commit: src/sys/dev/ic

2012-08-05 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Aug  5 22:47:36 UTC 2012

Modified Files:
src/sys/dev/ic: mfi.c

Log Message:
Really init sc_ioptype in mfi_attach()


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/sys/dev/ic/mfi.c

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/lib/libgcc

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 00:19:03 UTC 2012

Modified Files:
src/external/gpl3/gcc/lib/libgcc: Makefile.inc
src/external/gpl3/gcc/lib/libgcc/libgcc_s: Makefile

Log Message:
deal with LIB2_EH has ASM (.S) files.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/external/gpl3/gcc/lib/libgcc/Makefile.inc
cvs rdiff -u -r1.5 -r1.6 src/external/gpl3/gcc/lib/libgcc/libgcc_s/Makefile

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/lib/libgcc/libgcc_eh

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 00:21:09 UTC 2012

Modified Files:
src/external/gpl3/gcc/lib/libgcc/libgcc_eh: Makefile

Log Message:
Deal with LIB2_EHASM


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/gpl3/gcc/lib/libgcc/libgcc_eh/Makefile

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/lib/libgcc/arch

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 00:21:37 UTC 2012

Modified Files:
src/external/gpl3/gcc/lib/libgcc/arch: earm.mk

Log Message:
Regen again.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/gpl3/gcc/lib/libgcc/arch/earm.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/gcc/dist/gcc/config/arm

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 00:24:14 UTC 2012

Modified Files:
src/external/gpl3/gcc/dist/gcc/config/arm: bpabi.h netbsd-eabi.h
t-netbsd-eabi
Added Files:
src/external/gpl3/gcc/dist/gcc/config/arm: bpabi-netbsd.c

Log Message:
a few more fixes (make unwinding correct for EABI)
improve link spec to with fix-v4bx and emulations
Add bpabi-netbsd.c to resolve problem with bpabi.c conflicting with bpabi.S


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 \
src/external/gpl3/gcc/dist/gcc/config/arm/bpabi-netbsd.c
cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gcc/dist/gcc/config/arm/bpabi.h
cvs rdiff -u -r1.1 -r1.2 \
src/external/gpl3/gcc/dist/gcc/config/arm/netbsd-eabi.h \
src/external/gpl3/gcc/dist/gcc/config/arm/t-netbsd-eabi

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

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 00:49:53 UTC 2012

Modified Files:
src/external/gpl3/gcc/lib/libobjc/arch/earm: config.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm: c++config.h config.h
src/external/gpl3/gcc/usr.bin/gcc/arch/earm: auto-host.h configargs.h

Log Message:
More regened configury (mostly exception related).


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/gpl3/gcc/lib/libobjc/arch/earm/config.h
cvs rdiff -u -r1.1 -r1.2 \
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/c++config.h \
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm/config.h
cvs rdiff -u -r1.1 -r1.2 \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/auto-host.h \
src/external/gpl3/gcc/usr.bin/gcc/arch/earm/configargs.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/lib/libgcc/libgcc

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 01:38:30 UTC 2012

Modified Files:
src/external/gpl3/gcc/lib/libgcc/libgcc: Makefile

Log Message:
Add LIB2_EHASM to SRCS


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/external/gpl3/gcc/lib/libgcc/libgcc/Makefile

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



CVS commit: src/lib/libc/arch/arm

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 01:49:27 UTC 2012

Added Files:
src/lib/libc/arch/arm: aeabi.h

Log Message:
Mostly for reference, this header defines the "C" portion of the ARM
run time API for AAPCS (EABI).


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/lib/libc/arch/arm/aeabi.h

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



CVS commit: src/common/lib/libc/arch/arm/quad

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 01:50:30 UTC 2012

Added Files:
src/common/lib/libc/arch/arm/quad: __aeabi_lcmp.c __aeabi_ulcmp.c

Log Message:
Add long long / unsigned long long comparision routines.  These differ
from cmpdi2 in they return strcmp like values (-1, 0, 1).


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/common/lib/libc/arch/arm/quad/__aeabi_lcmp.c \
src/common/lib/libc/arch/arm/quad/__aeabi_ulcmp.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/arch/arm

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 01:53:08 UTC 2012

Removed Files:
src/lib/libc/arch/arm: aeabi.h

Log Message:
Moving this to  in sys


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r0 src/lib/libc/arch/arm/aeabi.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/arch/arm

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 01:54:21 UTC 2012

Modified Files:
src/lib/libc/arch/arm: Makefile.inc

Log Message:
Don't need -I${.CURDIR}/arch/arm anymore


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/lib/libc/arch/arm/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/arm/include

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 01:55:13 UTC 2012

Modified Files:
src/sys/arch/arm/include: Makefile
Added Files:
src/sys/arch/arm/include: aeabi.h

Log Message:
Add aeabi.h header which descibes the C portion of the EABI run time API.


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/sys/arch/arm/include/Makefile
cvs rdiff -u -r0 -r1.1 src/sys/arch/arm/include/aeabi.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/evbarm/stand/gzboot

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 02:14:16 UTC 2012

Modified Files:
src/sys/arch/evbarm/stand/gzboot: Makefile.gzboot
src/sys/arch/evbarm/stand/gzboot/ADI_BRH_flash_0x0014: ldscript
src/sys/arch/evbarm/stand/gzboot/GEMINI_dram_0x0160: Makefile
ldscript
src/sys/arch/evbarm/stand/gzboot/IQ80310_flash_0x0008: ldscript
src/sys/arch/evbarm/stand/gzboot/IQ80321_flash_0xf008: ldscript
src/sys/arch/evbarm/stand/gzboot/SMDK2410_flash_0x: ldscript
src/sys/arch/evbarm/stand/gzboot/SMDK2800_flash_0x: ldscript
src/sys/arch/evbarm/stand/gzboot/SMDK2800_flash_0x0010: ldscript
src/sys/arch/evbarm/stand/gzboot/TS7200_flash_0x6066: ldscript

Log Message:
Fix to allow EABI compilation.
Make sure to DISCARD new .ARM.attributes and .ARM.ebxidx sections.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/evbarm/stand/gzboot/Makefile.gzboot
cvs rdiff -u -r1.5 -r1.6 \
src/sys/arch/evbarm/stand/gzboot/ADI_BRH_flash_0x0014/ldscript
cvs rdiff -u -r1.2 -r1.3 \
src/sys/arch/evbarm/stand/gzboot/GEMINI_dram_0x0160/Makefile \
src/sys/arch/evbarm/stand/gzboot/GEMINI_dram_0x0160/ldscript
cvs rdiff -u -r1.4 -r1.5 \
src/sys/arch/evbarm/stand/gzboot/IQ80310_flash_0x0008/ldscript
cvs rdiff -u -r1.7 -r1.8 \
src/sys/arch/evbarm/stand/gzboot/IQ80321_flash_0xf008/ldscript
cvs rdiff -u -r1.4 -r1.5 \
src/sys/arch/evbarm/stand/gzboot/SMDK2410_flash_0x/ldscript
cvs rdiff -u -r1.4 -r1.5 \
src/sys/arch/evbarm/stand/gzboot/SMDK2800_flash_0x/ldscript
cvs rdiff -u -r1.4 -r1.5 \
src/sys/arch/evbarm/stand/gzboot/SMDK2800_flash_0x0010/ldscript
cvs rdiff -u -r1.3 -r1.4 \
src/sys/arch/evbarm/stand/gzboot/TS7200_flash_0x6066/ldscript

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



CVS commit: src/sys/lib/libkern/arch/arm

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 02:14:57 UTC 2012

Modified Files:
src/sys/lib/libkern/arch/arm: Makefile.inc

Log Message:
If earm*, compile new aeabi runtime routines.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/lib/libkern/arch/arm/Makefile.inc

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



CVS commit: src/common/lib/libc/arch/arm/quad

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 02:15:51 UTC 2012

Modified Files:
src/common/lib/libc/arch/arm/quad: __aeabi_lcmp.c __aeabi_ulcmp.c

Log Message:
Change include to 


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/common/lib/libc/arch/arm/quad/__aeabi_lcmp.c \
src/common/lib/libc/arch/arm/quad/__aeabi_ulcmp.c

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



CVS commit: src/common/lib/libc/quad

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 02:31:54 UTC 2012

Modified Files:
src/common/lib/libc/quad: ashrdi3.c lshldi3.c lshrdi3.c muldi3.c quad.h

Log Message:
Add ARM EABI aliases to a few functions.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/common/lib/libc/quad/ashrdi3.c \
src/common/lib/libc/quad/lshrdi3.c
cvs rdiff -u -r1.2 -r1.3 src/common/lib/libc/quad/lshldi3.c \
src/common/lib/libc/quad/muldi3.c
cvs rdiff -u -r1.6 -r1.7 src/common/lib/libc/quad/quad.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/lib/libgcc/libgcc

2012-08-05 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon Aug  6 02:34:28 UTC 2012

Modified Files:
src/external/gpl3/gcc/lib/libgcc/libgcc: Makefile

Log Message:
on earm, don't include EH code.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/external/gpl3/gcc/lib/libgcc/libgcc/Makefile

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