CVS commit: src/distrib/sets/lists

2012-11-20 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Tue Nov 20 05:27:25 UTC 2012

Modified Files:
src/distrib/sets/lists/base: ad.mips64eb ad.mips64el md.amd64
md.sparc64 shl.mi
src/distrib/sets/lists/comp: ad.mips64eb ad.mips64el md.amd64
md.sparc64 mi shl.mi

Log Message:
Fix set lists after the merge of netpgpverify(1) and libnetpgpverify(3)
from the agc-netpgp-standalone branch.


To generate a diff of this commit:
cvs rdiff -u -r1.102 -r1.103 src/distrib/sets/lists/base/ad.mips64eb
cvs rdiff -u -r1.101 -r1.102 src/distrib/sets/lists/base/ad.mips64el
cvs rdiff -u -r1.178 -r1.179 src/distrib/sets/lists/base/md.amd64
cvs rdiff -u -r1.167 -r1.168 src/distrib/sets/lists/base/md.sparc64
cvs rdiff -u -r1.639 -r1.640 src/distrib/sets/lists/base/shl.mi
cvs rdiff -u -r1.91 -r1.92 src/distrib/sets/lists/comp/ad.mips64eb
cvs rdiff -u -r1.93 -r1.94 src/distrib/sets/lists/comp/ad.mips64el
cvs rdiff -u -r1.182 -r1.183 src/distrib/sets/lists/comp/md.amd64
cvs rdiff -u -r1.159 -r1.160 src/distrib/sets/lists/comp/md.sparc64
cvs rdiff -u -r1.1789 -r1.1790 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.238 -r1.239 src/distrib/sets/lists/comp/shl.mi

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



CVS commit: src/tests/usr.bin

2012-11-20 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Tue Nov 20 08:02:06 UTC 2012

Modified Files:
src/tests/usr.bin: Makefile

Log Message:
descend into netpgpverify test directory too


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/tests/usr.bin/Makefile

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/tests

2012-11-20 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Tue Nov 20 08:00:34 UTC 2012

Modified Files:
src/distrib/sets/lists/tests: mi

Log Message:
add test files for netpgpverify


To generate a diff of this commit:
cvs rdiff -u -r1.506 -r1.507 src/distrib/sets/lists/tests/mi

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/base

2012-11-20 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Tue Nov 20 05:29:13 UTC 2012

Modified Files:
src/distrib/sets/lists/base: mi

Log Message:
add the directory for the netpgp header files


To generate a diff of this commit:
cvs rdiff -u -r1.1013 -r1.1014 src/distrib/sets/lists/base/mi

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



CVS commit: src/crypto/external/bsd/netpgp

2012-11-20 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Tue Nov 20 05:26:26 UTC 2012

Modified Files:
src/crypto/external/bsd/netpgp: Makefile
Added Files:
src/crypto/external/bsd/netpgp/bin: Makefile
src/crypto/external/bsd/netpgp/bin/netpgpverify: Makefile
src/crypto/external/bsd/netpgp/dist/src/libbn: Makefile bignum.c bn.h
libnetpgpbn.3 misc.c misc.h rand.c rand.h stubs.c stubs.h
src/crypto/external/bsd/netpgp/dist/src/libdigest: Makefile digest.c
digest.h tiger.3 tiger.c tiger.h
src/crypto/external/bsd/netpgp/dist/src/librsa: Makefile libnetpgprsa.3
rsa.c rsa.h rsastubs.c rsastubs.h
src/crypto/external/bsd/netpgp/dist/src/libverify: Makefile array.h
b64.c b64.h dump.c libnetpgpverify.3 libverify.c pgpsum.c pgpsum.h
verify.h
src/crypto/external/bsd/netpgp/dist/src/netpgpverify: main.c
src/crypto/external/bsd/netpgp/lib/verify: Makefile shlib_version

Log Message:
Merge netpgpverify(1) and libnetpgpverify(3) from the
agc-netpgp-standalone branch.

Rewrite the netpgpverify(1) functionality from RFC4880 up.  This is a
completely new implementation, and uses its own bignum library derived
from libtommath.  Apart from libz and libbz2, it just uses its own
library and is self-contained - this makes it easier to embed, and to
use from scripting languages.

netpgpverify(1) now verifies all the signed files i've thrown at it,
and the added bonus of using no functionality from libcrypto - all of
its bignum functionality comes from its own libnetpgpverify.so.
netpgpverify(1) now verifies not only signatures on binary files, but
also signatures on text documents.  This fixes PR/46930.  Please don't
start me on the hoops I had to jump through to calculate the digests
on text files; trust me, you will regret it.

% supersize `which netpgpverify`
   textdata bss dec hex filename
   4452 860  7253841508 /usr/bin/netpgpverify
  795421408   0   80950   13c36 /usr/lib/libz.so.1
  43994 984 488   45466b19a /usr/lib/libgcc_s.so.1
1318116   49644   69272 1437032  15ed68 /usr/lib/libc.so.12
  572534184   0   61437effd /usr/lib/libbz2.so.1
 1087261712   0  110438   1af66 /usr/lib/libnetpgpverify.so.4
  161208358792   69832   1740707   0x1a8fa3   total
%

% make t
env LD_LIBRARY_PATH=/usr/src/crypto/external/bsd/netpgp-standalone/lib/verify 
./netpgpverify -c verify b.gpg > output16
diff expected16 output16
rm -f output16
env LD_LIBRARY_PATH=/usr/src/crypto/external/bsd/netpgp-standalone/lib/verify 
./netpgpverify -c verify a.gpg > output17
diff expected17 output17
rm -f output17
env LD_LIBRARY_PATH=/usr/src/crypto/external/bsd/netpgp-standalone/lib/verify 
./netpgpverify -c verify gpgsigned-a.gpg > output18
diff expected18 output18
rm -f output18
env LD_LIBRARY_PATH=/usr/src/crypto/external/bsd/netpgp-standalone/lib/verify 
./netpgpverify -c verify NetBSD-6.0_RC2_hashes.asc > output19
diff expected19 output19
rm -f output19
...
env LD_LIBRARY_PATH=/usr/src/crypto/external/bsd/netpgp-standalone/lib/verify 
./netpgpverify -k dsa-pubring.gpg in2.asc > output45
diff expected45 output45
rm -f output45
env LD_LIBRARY_PATH=/usr/src/crypto/external/bsd/netpgp-standalone/lib/verify 
./netpgpverify -k problem-pubring.gpg NetBSD-6.0_hashes.asc > output46
diff expected46 output46
rm -f output46
cd tests/netpgpverify && make && atf-run
atf2kyua: I: Removing stale Kyuafiles from /tmp/.XX.004966aa
atf2kyua: I: Converting 
/usr/src/crypto/external/bsd/netpgp-standalone/tests/netpgpverify/Atffile -> 
/tmp/.XX.004966aa/Kyuafile
t_netpgpverify:netpgpverify_rsa  ->  passed  [0.221s]
t_netpgpverify:netpgpverify_dsa  ->  passed  [0.117s]

2/2 passed (0 failed)
Committed action 19
%


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/crypto/external/bsd/netpgp/Makefile
cvs rdiff -u -r0 -r1.4 src/crypto/external/bsd/netpgp/bin/Makefile
cvs rdiff -u -r0 -r1.2 \
src/crypto/external/bsd/netpgp/bin/netpgpverify/Makefile
cvs rdiff -u -r0 -r1.2 src/crypto/external/bsd/netpgp/dist/src/libbn/Makefile \
src/crypto/external/bsd/netpgp/dist/src/libbn/bignum.c \
src/crypto/external/bsd/netpgp/dist/src/libbn/bn.h \
src/crypto/external/bsd/netpgp/dist/src/libbn/libnetpgpbn.3 \
src/crypto/external/bsd/netpgp/dist/src/libbn/misc.c \
src/crypto/external/bsd/netpgp/dist/src/libbn/misc.h \
src/crypto/external/bsd/netpgp/dist/src/libbn/rand.c \
src/crypto/external/bsd/netpgp/dist/src/libbn/rand.h \
src/crypto/external/bsd/netpgp/dist/src/libbn/stubs.c \
src/crypto/external/bsd/netpgp/dist/src/libbn/stubs.h
cvs rdiff -u -r0 -r1.2 \
src/crypto/external/bsd/netpgp/dist/src/libdigest/Makefile \
src/crypto/external/bsd/netpgp/dist/src/libdigest/digest.c \
src/crypto/external/bsd/netpgp/dist/src/libdigest/digest.h \
src/crypto/external/bsd/netpgp/dist/src/libdigest/tiger.3 \
src/crypto/exte

CVS commit: src/tests/usr.bin/netpgpverify

2012-11-20 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Tue Nov 20 07:55:55 UTC 2012

Added Files:
src/tests/usr.bin/netpgpverify: Atffile Makefile t_netpgpverify.sh

Log Message:
Add tests for netpgpverify.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/tests/usr.bin/netpgpverify/Atffile \
src/tests/usr.bin/netpgpverify/Makefile \
src/tests/usr.bin/netpgpverify/t_netpgpverify.sh

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



CVS commit: [netbsd-6] src/common/lib/libc/arch/arm/gen

2012-11-20 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue Nov 20 09:08:30 UTC 2012

Modified Files:
src/common/lib/libc/arch/arm/gen [netbsd-6]: divsi3.S

Log Message:
The last commit message said rev. 1.4 was included, but it wasn't in divsi3.
Apply rev. 1.4.


To generate a diff of this commit:
cvs rdiff -u -r1.1.52.1 -r1.1.52.2 src/common/lib/libc/arch/arm/gen/divsi3.S

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



CVS commit: src/share/mk

2012-11-20 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Tue Nov 20 10:43:22 UTC 2012

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

Log Message:
Make the test for infinite recursion in PRINTOBJDIR more specific,
and make the error case more easily recognisable.

Now "make -V '${PRINTOBJDIR}'" works instead of misinterpreting the "-V"
as infinite recursion.


To generate a diff of this commit:
cvs rdiff -u -r1.712 -r1.713 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/sys/kern

2012-11-20 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue Nov 20 11:06:28 UTC 2012

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

Log Message:
Pass correct wait channel string.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/kern/subr_cprng.c

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



CVS commit: src/bin/ls

2012-11-20 Thread David Brownlee
Module Name:src
Committed By:   abs
Date:   Tue Nov 20 12:37:29 UTC 2012

Modified Files:
src/bin/ls: ls.1 ls.c

Log Message:
PR/47167
ls.1:
- Sort options in `SYNOPSIS', the option list, and texts within
  the man page;
- improve wording;
- improve macro usage;
- use more consistency regarding (locations for) information about
  which options override which;
- cross-reference `-d' and `-R';
- simplify description of `-k', removing redundant and unneeded
  information;
- sort entry type list (but leave `-a' and `-A' as they are, given
  their meaning);
- correct / augment description of `BLOCKSIZE' environment variable
  in `ENVIRONMENT' section;
- bump date.

ls.c:
- Sort options in `usage';
- augment comment about when to figure out block size.


To generate a diff of this commit:
cvs rdiff -u -r1.71 -r1.72 src/bin/ls/ls.1
cvs rdiff -u -r1.69 -r1.70 src/bin/ls/ls.c

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



CVS commit: src/games/wtf

2012-11-20 Thread David Brownlee
Module Name:src
Committed By:   abs
Date:   Tue Nov 20 12:40:54 UTC 2012

Modified Files:
src/games/wtf: wtf wtf.6

Log Message:
PR/47178 from Bug Hunting

src/games/wtf/wtf:
- Correct `usage' (to match new `SYNOPSIS' from man page);
- augment comment on quering pkgsrc's help facility;
- correct interpretation of pkgsrc' help facility query result.

src/games/wtf/wtf.6:
- enhance `SYNOPSIS', document description (`.Dd'), and overal
  program description;
- augment description about quering pkgsrc's help facility;
- improve wording;
- augment `HISTORY' section;
- bump date.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/games/wtf/wtf
cvs rdiff -u -r1.15 -r1.16 src/games/wtf/wtf.6

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



CVS commit: src/etc/mtree

2012-11-20 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Tue Nov 20 15:02:44 UTC 2012

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
Fix the build - give install a place to put verify.h !


To generate a diff of this commit:
cvs rdiff -u -r1.106 -r1.107 src/etc/mtree/NetBSD.dist.base

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



CVS commit: src/etc/mtree

2012-11-20 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Tue Nov 20 15:41:43 UTC 2012

Modified Files:
src/etc/mtree: NetBSD.dist.tests

Log Message:
Also give install a place to put the atf tests for netpgpverify


To generate a diff of this commit:
cvs rdiff -u -r1.88 -r1.89 src/etc/mtree/NetBSD.dist.tests

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

2012-11-20 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Tue Nov 20 16:18:50 UTC 2012

Modified Files:
src/distrib/sets/lists/comp: mi
src/distrib/sets/lists/tests: mi

Log Message:
add missing destdir files for netpgpverify addition


To generate a diff of this commit:
cvs rdiff -u -r1.1790 -r1.1791 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.507 -r1.508 src/distrib/sets/lists/tests/mi

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



CVS commit: src/external/bsd/mdocml/dist

2012-11-20 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Tue Nov 20 16:24:30 UTC 2012

Modified Files:
src/external/bsd/mdocml/dist: lib.in

Log Message:
add definition for libnetpgpverify


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/external/bsd/mdocml/dist/lib.in

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



CVS commit: src/lib

2012-11-20 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Tue Nov 20 16:33:06 UTC 2012

Modified Files:
src/lib: Makefile

Log Message:
descend into libnetpgpverify so that the compat entries are picked up


To generate a diff of this commit:
cvs rdiff -u -r1.195 -r1.196 src/lib/Makefile

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



CVS commit: src/crypto/external/bsd/netpgp/dist/src/libbn

2012-11-20 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Tue Nov 20 17:57:41 UTC 2012

Modified Files:
src/crypto/external/bsd/netpgp/dist/src/libbn: bignum.c bn.h

Log Message:
don't assume every platform is 64-bit - just use standard integer arithmetic


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
src/crypto/external/bsd/netpgp/dist/src/libbn/bignum.c \
src/crypto/external/bsd/netpgp/dist/src/libbn/bn.h

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



CVS commit: src/crypto/external/bsd/netpgp/dist/src/libverify

2012-11-20 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Tue Nov 20 18:45:37 UTC 2012

Modified Files:
src/crypto/external/bsd/netpgp/dist/src/libverify: libverify.c

Log Message:
fix problem on 32-bit problems - with thanks to Alan Barrett and
Jonathan Kollasch


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
src/crypto/external/bsd/netpgp/dist/src/libverify/libverify.c

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



CVS commit: [matt-nb6-plus] src/tools

2012-11-20 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Tue Nov 20 18:54:42 UTC 2012

Modified Files:
src/tools/binutils [matt-nb6-plus]: Makefile
src/tools/dbsym [matt-nb6-plus]: Makefile
src/tools/gdb [matt-nb6-plus]: Makefile
src/tools/mdsetimage [matt-nb6-plus]: Makefile

Log Message:
Support building GPL2 versions of binutils, dbsym, gdb, and mdsetimage


To generate a diff of this commit:
cvs rdiff -u -r1.21.4.1 -r1.21.4.1.2.1 src/tools/binutils/Makefile
cvs rdiff -u -r1.7 -r1.7.6.1 src/tools/dbsym/Makefile
cvs rdiff -u -r1.21 -r1.21.4.1 src/tools/gdb/Makefile
cvs rdiff -u -r1.9 -r1.9.6.1 src/tools/mdsetimage/Makefile

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



CVS commit: [matt-nb6-plus] src/share/mk

2012-11-20 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Tue Nov 20 18:55:10 UTC 2012

Modified Files:
src/share/mk [matt-nb6-plus]: bsd.own.mk

Log Message:
Default to binutils 2.21


To generate a diff of this commit:
cvs rdiff -u -r1.696.2.2.2.1 -r1.696.2.2.2.2 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/sys/arch/arm/imx

2012-11-20 Thread Jochen Kunz
Module Name:src
Committed By:   jkunz
Date:   Tue Nov 20 19:06:14 UTC 2012

Added Files:
src/sys/arch/arm/imx: files.imx23 imx23_apbdma.c imx23_apbdma.h
imx23_apbdmareg.h imx23_apbh.c imx23_apbhdmareg.h imx23_apbx.c
imx23_apbxdmareg.h imx23_clkctrlreg.h imx23_digctlreg.h imx23_dma.c
imx23_emireg.h imx23_icoll.c imx23_icollreg.h imx23_intr.h
imx23_pinctrlreg.h imx23_plcom.c imx23_powerreg.h imx23_rtcreg.h
imx23_space.c imx23_ssp.c imx23_sspreg.h imx23_timrot.c
imx23_timrotreg.h imx23_uartappreg.h imx23_uartdbgreg.h imx23var.h

Log Message:
Add initial support for Freescale i.MX23 application processor.
Contributed by Petri Laakso.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/sys/arch/arm/imx/files.imx23 \
src/sys/arch/arm/imx/imx23_apbdma.c src/sys/arch/arm/imx/imx23_apbdma.h \
src/sys/arch/arm/imx/imx23_apbdmareg.h src/sys/arch/arm/imx/imx23_apbh.c \
src/sys/arch/arm/imx/imx23_apbhdmareg.h src/sys/arch/arm/imx/imx23_apbx.c \
src/sys/arch/arm/imx/imx23_apbxdmareg.h \
src/sys/arch/arm/imx/imx23_clkctrlreg.h \
src/sys/arch/arm/imx/imx23_digctlreg.h src/sys/arch/arm/imx/imx23_dma.c \
src/sys/arch/arm/imx/imx23_emireg.h src/sys/arch/arm/imx/imx23_icoll.c \
src/sys/arch/arm/imx/imx23_icollreg.h src/sys/arch/arm/imx/imx23_intr.h \
src/sys/arch/arm/imx/imx23_pinctrlreg.h \
src/sys/arch/arm/imx/imx23_plcom.c src/sys/arch/arm/imx/imx23_powerreg.h \
src/sys/arch/arm/imx/imx23_rtcreg.h src/sys/arch/arm/imx/imx23_space.c \
src/sys/arch/arm/imx/imx23_ssp.c src/sys/arch/arm/imx/imx23_sspreg.h \
src/sys/arch/arm/imx/imx23_timrot.c \
src/sys/arch/arm/imx/imx23_timrotreg.h \
src/sys/arch/arm/imx/imx23_uartappreg.h \
src/sys/arch/arm/imx/imx23_uartdbgreg.h src/sys/arch/arm/imx/imx23var.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

2012-11-20 Thread Jochen Kunz
Module Name:src
Committed By:   jkunz
Date:   Tue Nov 20 19:08:47 UTC 2012

Added Files:
src/sys/arch/evbarm/conf: IMX23_OLINUXINO files.imx23_olinuxino
mk.imx23_olinuxino std.imx23_olinuxino
src/sys/arch/evbarm/imx23_olinuxino: imx23_olinuxino_machdep.c
imx23_olinuxino_start.S
src/sys/arch/evbarm/stand/bootimx23: Makefile boot_prep.c bootimx23.bd
clock_prep.c common.c common.h emi_prep.c pinctrl_prep.c
power_prep.c

Log Message:
Add initial support for Olimex iMX233 based OLinuXino boards.
https://www.olimex.com/Products/OLinuXino/iMX233/
Contributed by Petri Laakso.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/sys/arch/evbarm/conf/IMX23_OLINUXINO \
src/sys/arch/evbarm/conf/files.imx23_olinuxino \
src/sys/arch/evbarm/conf/mk.imx23_olinuxino \
src/sys/arch/evbarm/conf/std.imx23_olinuxino
cvs rdiff -u -r0 -r1.1 \
src/sys/arch/evbarm/imx23_olinuxino/imx23_olinuxino_machdep.c \
src/sys/arch/evbarm/imx23_olinuxino/imx23_olinuxino_start.S
cvs rdiff -u -r0 -r1.1 src/sys/arch/evbarm/stand/bootimx23/Makefile \
src/sys/arch/evbarm/stand/bootimx23/boot_prep.c \
src/sys/arch/evbarm/stand/bootimx23/bootimx23.bd \
src/sys/arch/evbarm/stand/bootimx23/clock_prep.c \
src/sys/arch/evbarm/stand/bootimx23/common.c \
src/sys/arch/evbarm/stand/bootimx23/common.h \
src/sys/arch/evbarm/stand/bootimx23/emi_prep.c \
src/sys/arch/evbarm/stand/bootimx23/pinctrl_prep.c \
src/sys/arch/evbarm/stand/bootimx23/power_prep.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/base

2012-11-20 Thread Jochen Kunz
Module Name:src
Committed By:   jkunz
Date:   Tue Nov 20 19:09:47 UTC 2012

Modified Files:
src/distrib/sets/lists/base: md.evbarm

Log Message:
Add initial support for Olimex iMX233 based OLinuXino boards.
https://www.olimex.com/Products/OLinuXino/iMX233/
Contributed by Petri Laakso.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/distrib/sets/lists/base/md.evbarm

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

2012-11-20 Thread Jochen Kunz
Module Name:src
Committed By:   jkunz
Date:   Tue Nov 20 19:17:03 UTC 2012

Modified Files:
src/sys/arch/evbarm/stand: Makefile

Log Message:
Add initial support for Olimex iMX233 based OLinuXino boards.
https://www.olimex.com/Products/OLinuXino/iMX233/
Contributed by Petri Laakso.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbarm/stand/Makefile

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



CVS commit: src/tests/lib/libc/c063

2012-11-20 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Nov 20 20:01:14 UTC 2012

Modified Files:
src/tests/lib/libc/c063: t_fchownat.c t_mknodat.c

Log Message:
Mark a few tests that require root


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/c063/t_fchownat.c \
src/tests/lib/libc/c063/t_mknodat.c

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



CVS commit: src/distrib/common/bootimage

2012-11-20 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Tue Nov 20 20:16:04 UTC 2012

Modified Files:
src/distrib/common/bootimage: fstab.in fstab.install.in

Log Message:
Don't enable WAPBL in images.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/distrib/common/bootimage/fstab.in \
src/distrib/common/bootimage/fstab.install.in

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



CVS commit: src/distrib/utils/sysinst

2012-11-20 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Tue Nov 20 20:17:43 UTC 2012

Modified Files:
src/distrib/utils/sysinst: bsddisklabel.c

Log Message:
Don't enable WAPBL by default. It's far too dangerous.


To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 src/distrib/utils/sysinst/bsddisklabel.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/usb

2012-11-20 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Tue Nov 20 21:16:03 UTC 2012

Modified Files:
src/sys/dev/usb: ohci.c

Log Message:
KNF whitespace.


To generate a diff of this commit:
cvs rdiff -u -r1.224 -r1.225 src/sys/dev/usb/ohci.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/broadcom

2012-11-20 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Tue Nov 20 21:21:42 UTC 2012

Modified Files:
src/sys/arch/arm/broadcom: bcm2835reg.h

Log Message:
Define BCM2835_USB_SIZE


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/broadcom/bcm2835reg.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/broadcom

2012-11-20 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Tue Nov 20 21:22:11 UTC 2012

Modified Files:
src/sys/arch/arm/broadcom: bcm2835reg.h

Log Message:
Trailing whitespace.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/arm/broadcom/bcm2835reg.h

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



CVS commit: [netbsd-6] src/distrib/sets/lists/modules

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 21:22:57 UTC 2012

Modified Files:
src/distrib/sets/lists/modules [netbsd-6]: md.evbppc

Log Message:
Pull up following revision(s) (requested by rmind in ticket #678):
distrib/sets/lists/modules/md.evbppc: revision 1.27
distrib/sets/lists/modules/md.evbppc: revision 1.28

More fixes for ticket #678

npf extension modules for evbppc abi variants
Fix npf module paths


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.18.2.1 src/distrib/sets/lists/modules/md.evbppc

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



CVS commit: [netbsd-6] src/doc

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 21:26:30 UTC 2012

Modified Files:
src/doc [netbsd-6]: CHANGES-6.1

Log Message:
Update entry for ticket #693


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.28 -r1.1.2.29 src/doc/CHANGES-6.1

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



CVS commit: [netbsd-6] src/sys/kern

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 21:32:24 UTC 2012

Modified Files:
src/sys/kern [netbsd-6]: kern_exec.c

Log Message:
Pull up following revision(s) (requested by christos in ticket #670):
sys/kern/kern_exec.c: revision 1.358
If you are going to dick around with p_stat, remember to put it
back so that spawn processes with attributes don't end up starting
up stopped!
XXX: pullup to 6.


To generate a diff of this commit:
cvs rdiff -u -r1.339.2.5 -r1.339.2.6 src/sys/kern/kern_exec.c

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



CVS commit: [netbsd-6] src/doc

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 21:32:44 UTC 2012

Modified Files:
src/doc [netbsd-6]: CHANGES-6.1

Log Message:
TIcket 670


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.29 -r1.1.2.30 src/doc/CHANGES-6.1

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



CVS commit: [netbsd-6-0] src/sys/kern

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 21:32:57 UTC 2012

Modified Files:
src/sys/kern [netbsd-6-0]: kern_exec.c

Log Message:
Pull up following revision(s) (requested by christos in ticket #670):
sys/kern/kern_exec.c: revision 1.358
If you are going to dick around with p_stat, remember to put it
back so that spawn processes with attributes don't end up starting
up stopped!
XXX: pullup to 6.


To generate a diff of this commit:
cvs rdiff -u -r1.339.2.5 -r1.339.2.5.4.1 src/sys/kern/kern_exec.c

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



CVS commit: [netbsd-6-0] src/doc

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 21:33:15 UTC 2012

Modified Files:
src/doc [netbsd-6-0]: CHANGES-6.0.1

Log Message:
Ticket 670.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.13 -r1.1.2.14 src/doc/CHANGES-6.0.1

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/bootimx23

2012-11-20 Thread Jochen Kunz
Module Name:src
Committed By:   jkunz
Date:   Tue Nov 20 21:36:35 UTC 2012

Modified Files:
src/sys/arch/evbarm/stand/bootimx23: bootimx23.bd

Log Message:
Adjust bootloader file name.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbarm/stand/bootimx23/bootimx23.bd

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/sys

2012-11-20 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Tue Nov 20 22:02:46 UTC 2012

Modified Files:
src/lib/libc/arch/arm/sys: __aeabi_read_tp.S

Log Message:
Add $NetBSD$ tag.  Use ip to save r1 instead of the stack.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/libc/arch/arm/sys/__aeabi_read_tp.S

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



CVS commit: [netbsd-6] src/distrib/sets/lists/comp

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 22:19:23 UTC 2012

Modified Files:
src/distrib/sets/lists/comp [netbsd-6]: mi shl.mi

Log Message:
Clean up trailing whitespace from last (hand-edited) commit.  Also missed
one "rump" in a debug lib.


To generate a diff of this commit:
cvs rdiff -u -r1.1738.2.10 -r1.1738.2.11 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.209.2.8 -r1.209.2.9 src/distrib/sets/lists/comp/shl.mi

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



CVS commit: [netbsd-6] src/sys/dev/marvell

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 22:26:03 UTC 2012

Modified Files:
src/sys/dev/marvell [netbsd-6]: if_mvgbe.c mvgbereg.h

Log Message:
Apply patch (requested by msaitoh in ticket #671):

sys/dev/marvell/if_mvgbe.c  1.19-1.23, 1.26-1.31
sys/dev/marvell/mvgbereg.h  1.4-1.5, 1.7

Add missing bus_dmamap_sync() for the RX buffer.
Fix device timeout problem.
Fix broken hardware checksumming.
Fix a bug that kernel panics when the system get a packet while calling
mvgbe_stop (via ifconfig down).
Add missing mii_tick() call.
Change style a bit.
Don't use M_HASFCS flag.
When an interrput is link change, notify link change to mii layer using
mii_pollstat().
Fix a bug that the alignment of jumbo buffer(MVGBE_JLEN) is miscalculated.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.16.2.1 src/sys/dev/marvell/if_mvgbe.c
cvs rdiff -u -r1.3 -r1.3.10.1 src/sys/dev/marvell/mvgbereg.h

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



CVS commit: [netbsd-6] src/distrib/sets/lists/comp

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 22:33:40 UTC 2012

Modified Files:
src/distrib/sets/lists/comp [netbsd-6]: mi

Log Message:
Pull up following revision(s) (requested by he in ticket #672):
distrib/sets/lists/comp/mi: revision 1.1772
Add rootconf.0


To generate a diff of this commit:
cvs rdiff -u -r1.1738.2.11 -r1.1738.2.12 src/distrib/sets/lists/comp/mi

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



CVS commit: [netbsd-6] xsrc/external/mit/xorg-server/dist/exa

2012-11-20 Thread Jeff Rizzo
Module Name:xsrc
Committed By:   riz
Date:   Tue Nov 20 22:37:31 UTC 2012

Modified Files:
xsrc/external/mit/xorg-server/dist/exa [netbsd-6]: exa_priv.h
exa_unaccel.c

Log Message:
Pull up following revision(s) (requested by abs in ticket #673):
external/mit/xorg-server/dist/exa/exa_unaccel.c: revision 1.2
external/mit/xorg-server/dist/exa/exa_priv.h: revision 1.2
Apply patch https://bugs.freedesktop.org/attachment.cgi?id=68718
(with whitespace tweaks) from
https://bugs.freedesktop.org/show_bug.cgi?id=47266
to address graphics corruption using recent Cairo, manifested most
commonly by certain rendered text sections appearing as solid rectangular
blocks of colour.
Should be pulled up to netbsd-6 (and probably -5)


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4 -r1.1.1.4.2.1 \
xsrc/external/mit/xorg-server/dist/exa/exa_priv.h
cvs rdiff -u -r1.1.1.6 -r1.1.1.6.2.1 \
xsrc/external/mit/xorg-server/dist/exa/exa_unaccel.c

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



CVS commit: [netbsd-6-0] xsrc/external/mit/xorg-server/dist/exa

2012-11-20 Thread Jeff Rizzo
Module Name:xsrc
Committed By:   riz
Date:   Tue Nov 20 22:50:02 UTC 2012

Modified Files:
xsrc/external/mit/xorg-server/dist/exa [netbsd-6-0]: exa_priv.h
exa_unaccel.c

Log Message:
Pull up following revision(s) (requested by abs in ticket #673):
external/mit/xorg-server/dist/exa/exa_unaccel.c: revision 1.2
external/mit/xorg-server/dist/exa/exa_priv.h: revision 1.2
Apply patch https://bugs.freedesktop.org/attachment.cgi?id=68718
(with whitespace tweaks) from
https://bugs.freedesktop.org/show_bug.cgi?id=47266
to address graphics corruption using recent Cairo, manifested most
commonly by certain rendered text sections appearing as solid rectangular
blocks of colour.
Should be pulled up to netbsd-6 (and probably -5)


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4 -r1.1.1.4.4.1 \
xsrc/external/mit/xorg-server/dist/exa/exa_priv.h
cvs rdiff -u -r1.1.1.6 -r1.1.1.6.4.1 \
xsrc/external/mit/xorg-server/dist/exa/exa_unaccel.c

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



CVS commit: src/usr.bin/pkill

2012-11-20 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Nov 20 22:52:02 UTC 2012

Modified Files:
src/usr.bin/pkill: pkill.c

Log Message:
Don't use p_comm since it is only 16 characters long and you can find the
full argv[0]. It is just confusing to have a long command name, that ps
shows as the long command name, and then when you try to kill it using
the full command name as displayed you don't get a match. While there
fix a format nit, and remove the main() declaration.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/usr.bin/pkill/pkill.c

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



CVS commit: [netbsd-6-0] src/doc

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 22:53:21 UTC 2012

Modified Files:
src/doc [netbsd-6-0]: CHANGES-6.0.1

Log Message:
Ticket 673.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.14 -r1.1.2.15 src/doc/CHANGES-6.0.1

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



CVS commit: [netbsd-6] src

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 23:11:47 UTC 2012

Modified Files:
src/etc [netbsd-6]: daily weekly
src/etc/rc.d [netbsd-6]: makemandb
src/usr.sbin/makemandb [netbsd-6]: apropos.1 apropos.c makemandb.8
makemandb.c

Log Message:
Pull up following revision(s) (requested by tron in ticket #676):
usr.sbin/makemandb/apropos.c: revision 1.7
usr.sbin/makemandb/makemandb.8: revision 1.3
usr.sbin/makemandb/makemandb.8: revision 1.4
usr.sbin/makemandb/makemandb.8: revision 1.5
etc/rc.d/makemandb: revision 1.4
etc/weekly: revision 1.29
usr.sbin/makemandb/makemandb.c: revision 1.10
usr.sbin/makemandb/makemandb.c: revision 1.11
usr.sbin/makemandb/makemandb.c: revision 1.12
usr.sbin/makemandb/makemandb.c: revision 1.13
usr.sbin/makemandb/makemandb.c: revision 1.14
usr.sbin/makemandb/apropos.1: revision 1.5
etc/daily: revision 1.87
Add HISTORY section. From Abhinav Upadhyay in private mail.
Sync with reality, From Abhinav Upadhyay in private mail.
Fix typo in a message.
Bug fix for PR 46733:
 > makemandb always reports the same number for "Total Number of new or
 > updated pages enountered" and "Total number of (hard or symbolic)
 > links found".
Patch from Abhinav Upadhyay.
Sort options in SYNOPSIS.
Sync usage with manpage.
Add -Q flag:
Print only fatal error messages (i.e., when the database is left in
an inconsistent state and needs manual intervention).
>From Abhinav Upadhyay .
Use new makemandb -Q flag to be really quiet.
Fix usage, from Abhinav Upadhyay .
Use emalloc in one more place, like the rest of the code does.
>From Abhinav Upadhyay .


To generate a diff of this commit:
cvs rdiff -u -r1.80.2.5 -r1.80.2.6 src/etc/daily
cvs rdiff -u -r1.25.2.3 -r1.25.2.4 src/etc/weekly
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/etc/rc.d/makemandb
cvs rdiff -u -r1.2.2.2 -r1.2.2.3 src/usr.sbin/makemandb/apropos.1
cvs rdiff -u -r1.4.2.2 -r1.4.2.3 src/usr.sbin/makemandb/apropos.c
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/usr.sbin/makemandb/makemandb.8
cvs rdiff -u -r1.2.2.5 -r1.2.2.6 src/usr.sbin/makemandb/makemandb.c

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



CVS commit: [matt-nb6-plus] src/share/examples/npf

2012-11-20 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Tue Nov 20 23:13:36 UTC 2012

Added Files:
src/share/examples/npf [matt-nb6-plus]: Makefile hashtablefile
host-npf.conf soho_gw-npf.conf treetablefile

Log Message:
Add missing files.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1.8.2 src/share/examples/npf/Makefile \
src/share/examples/npf/hashtablefile src/share/examples/npf/treetablefile
cvs rdiff -u -r0 -r1.2.8.2 src/share/examples/npf/host-npf.conf \
src/share/examples/npf/soho_gw-npf.conf

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



CVS commit: [matt-nb6-plus] src/tools/binutils

2012-11-20 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Tue Nov 20 23:14:29 UTC 2012

Modified Files:
src/tools/binutils [matt-nb6-plus]: Makefile

Log Message:
Make sure binutils is using sysroot regardless of version.


To generate a diff of this commit:
cvs rdiff -u -r1.21.4.1.2.1 -r1.21.4.1.2.2 src/tools/binutils/Makefile

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



CVS commit: [netbsd-6] src

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 23:16:38 UTC 2012

Modified Files:
src/doc [netbsd-6]: 3RDPARTY
src/share/zoneinfo [netbsd-6]: africa asia australasia europe
northamerica southamerica

Log Message:
doc/3RDPARTYpatch
share/zoneinfo/africa   patch
share/zoneinfo/asia patch
share/zoneinfo/australasia  patch
share/zoneinfo/europe   patch
share/zoneinfo/northamerica patch
share/zoneinfo/southamerica patch

Import tzdata2012j from
ftp://ftp.iana.org/tz/releases/tzdata2012j.tar.gz
Changes from tzdata2012i to tzdata2012j:
Libya moved to CET this weekend, but with DST planned next year.
Various fixes to documentation and commentary.
[apb, ticket #677]


To generate a diff of this commit:
cvs rdiff -u -r1.909.2.16 -r1.909.2.17 src/doc/3RDPARTY
cvs rdiff -u -r1.1.1.30.4.1 -r1.1.1.30.4.2 src/share/zoneinfo/africa
cvs rdiff -u -r1.1.1.50.4.5 -r1.1.1.50.4.6 src/share/zoneinfo/asia
cvs rdiff -u -r1.23.4.5 -r1.23.4.6 src/share/zoneinfo/australasia
cvs rdiff -u -r1.1.1.44.4.3 -r1.1.1.44.4.4 src/share/zoneinfo/europe
cvs rdiff -u -r1.1.1.49.4.4 -r1.1.1.49.4.5 src/share/zoneinfo/northamerica
cvs rdiff -u -r1.1.1.46.4.4 -r1.1.1.46.4.5 src/share/zoneinfo/southamerica

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



CVS commit: [matt-nb6-plus] src/share/mk

2012-11-20 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Tue Nov 20 23:22:25 UTC 2012

Modified Files:
src/share/mk [matt-nb6-plus]: bsd.own.mk

Log Message:
When using binutils 2.16 with arm, add -D__HAVE_NO__THREADS to CPPFLAGS since
that version bintuils doesn't support TLS for arm.  XXX not sure if it supports
TLS for anything.


To generate a diff of this commit:
cvs rdiff -u -r1.696.2.2.2.2 -r1.696.2.2.2.3 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: [matt-nb6-plus] src/lib

2012-11-20 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Tue Nov 20 23:24:55 UTC 2012

Modified Files:
src/lib [matt-nb6-plus]: Makefile

Log Message:
Add back building binutils 2.16 libraries


To generate a diff of this commit:
cvs rdiff -u -r1.181.2.1 -r1.181.2.1.2.1 src/lib/Makefile

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



CVS commit: [matt-nb6-plus] src/lib/libc/arch/arm/sys

2012-11-20 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Tue Nov 20 23:25:41 UTC 2012

Modified Files:
src/lib/libc/arch/arm/sys [matt-nb6-plus]: __aeabi_read_tp.S

Log Message:
Don't push/pop r1 around SYSTRAP, save it in ip instead.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.2.6.1 src/lib/libc/arch/arm/sys/__aeabi_read_tp.S

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



CVS commit: [matt-nb6-plus] src/tests

2012-11-20 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Tue Nov 20 23:26:55 UTC 2012

Modified Files:
src/tests/crypto/libcrypto/idea [matt-nb6-plus]: Makefile
src/tests/crypto/libcrypto/mdc2 [matt-nb6-plus]: Makefile
src/tests/crypto/libcrypto/rc5 [matt-nb6-plus]: Makefile
src/tests/lib/libcurses/slave [matt-nb6-plus]: Makefile

Log Message:
Conditionalize use of --no-fatal-warnings on ${HAVE_BINUTILS} == "219"


To generate a diff of this commit:
cvs rdiff -u -r1.3.6.1 -r1.3.6.2 src/tests/crypto/libcrypto/idea/Makefile
cvs rdiff -u -r1.3.6.1 -r1.3.6.2 src/tests/crypto/libcrypto/mdc2/Makefile
cvs rdiff -u -r1.3 -r1.3.6.1 src/tests/crypto/libcrypto/rc5/Makefile
cvs rdiff -u -r1.6 -r1.6.6.1 src/tests/lib/libcurses/slave/Makefile

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



CVS commit: [netbsd-6-0] src

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 23:29:35 UTC 2012

Modified Files:
src/doc [netbsd-6-0]: 3RDPARTY
src/share/zoneinfo [netbsd-6-0]: africa asia australasia europe
northamerica southamerica

Log Message:
doc/3RDPARTYpatch
share/zoneinfo/africa   patch
share/zoneinfo/asia patch
share/zoneinfo/australasia  patch
share/zoneinfo/europe   patch
share/zoneinfo/northamerica patch
share/zoneinfo/southamerica patch

Import tzdata2012j from
ftp://ftp.iana.org/tz/releases/tzdata2012j.tar.gz
Changes from tzdata2012h to tzdata2012i:
Changes from tzdata2012h to tzdata2012i:
Cuba switches from DST on 4 Nov 2012 at 01:00. (Thanks to 
Steffen
Thorsen.)
Changes from tzdata2012i to tzdata2012j:
Libya moved to CET this weekend, but with DST planned next year.
(Thanks to Even Scharning, Steffen Thorsen, and Tim Parenti.)
Various fixes to documentation and commentary.
[apb, ticket #677]


To generate a diff of this commit:
cvs rdiff -u -r1.909.2.14.2.2 -r1.909.2.14.2.3 src/doc/3RDPARTY
cvs rdiff -u -r1.1.1.30.4.1 -r1.1.1.30.4.1.4.1 src/share/zoneinfo/africa
cvs rdiff -u -r1.1.1.50.4.3.4.2 -r1.1.1.50.4.3.4.3 src/share/zoneinfo/asia
cvs rdiff -u -r1.23.4.4.2.1 -r1.23.4.4.2.2 src/share/zoneinfo/australasia
cvs rdiff -u -r1.1.1.44.4.3 -r1.1.1.44.4.3.4.1 src/share/zoneinfo/europe
cvs rdiff -u -r1.1.1.49.4.4 -r1.1.1.49.4.4.4.1 \
src/share/zoneinfo/northamerica
cvs rdiff -u -r1.1.1.46.4.3.4.1 -r1.1.1.46.4.3.4.2 \
src/share/zoneinfo/southamerica

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



CVS commit: [netbsd-6-0] src/doc

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 23:30:34 UTC 2012

Modified Files:
src/doc [netbsd-6-0]: CHANGES-6.0.1

Log Message:
Ticket 677.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.15 -r1.1.2.16 src/doc/CHANGES-6.0.1

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



CVS commit: [netbsd-6] src/doc

2012-11-20 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 20 23:31:09 UTC 2012

Modified Files:
src/doc [netbsd-6]: CHANGES-6.1

Log Message:
Tickets 671-673,676-677


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.30 -r1.1.2.31 src/doc/CHANGES-6.1

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/bootimx23

2012-11-20 Thread Jochen Kunz
Module Name:src
Committed By:   jkunz
Date:   Tue Nov 20 23:39:33 UTC 2012

Modified Files:
src/sys/arch/evbarm/stand/bootimx23: power_prep.c

Log Message:
Give memory more time to power up. Avoids hangups.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbarm/stand/bootimx23/power_prep.c

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



CVS commit: [matt-nb6-plus] src/sys/rump

2012-11-20 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Tue Nov 20 23:58:02 UTC 2012

Modified Files:
src/sys/rump [matt-nb6-plus]: Makefile.rump

Log Message:
Don't use ldscript unless HAVE_BINUTILS == 219


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.61.12.1 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: [matt-nb6-plus] src/sys/arch/arm/include

2012-11-20 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Nov 21 00:00:10 UTC 2012

Modified Files:
src/sys/arch/arm/include [matt-nb6-plus]: Makefile vfpreg.h
Added Files:
src/sys/arch/arm/include [matt-nb6-plus]: aeabi.h

Log Message:
Add aeabi.h, cpuconf.h, and vfpreg.h


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.40.10.1 src/sys/arch/arm/include/Makefile
cvs rdiff -u -r0 -r1.2.6.2 src/sys/arch/arm/include/aeabi.h
cvs rdiff -u -r1.1 -r1.1.56.1 src/sys/arch/arm/include/vfpreg.h

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



CVS commit: [matt-nb6-plus] src/distrib/sets

2012-11-20 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Nov 21 00:07:37 UTC 2012

Modified Files:
src/distrib/sets [matt-nb6-plus]: mkvars.mk
src/distrib/sets/lists/base [matt-nb6-plus]: shl.mi
src/distrib/sets/lists/comp [matt-nb6-plus]: ad.arm shl.mi

Log Message:
Add HAVE_BINUTILS back.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.6.6.1 src/distrib/sets/mkvars.mk
cvs rdiff -u -r1.616.2.4.2.1 -r1.616.2.4.2.2 \
src/distrib/sets/lists/base/shl.mi
cvs rdiff -u -r1.38 -r1.38.6.1 src/distrib/sets/lists/comp/ad.arm
cvs rdiff -u -r1.209.2.4.2.1 -r1.209.2.4.2.2 \
src/distrib/sets/lists/comp/shl.mi

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



CVS commit: [matt-nb6-plus] src/external

2012-11-20 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Nov 21 01:04:34 UTC 2012

Modified Files:
src/external [matt-nb6-plus]: Makefile
src/external/gpl3 [matt-nb6-plus]: Makefile

Log Message:
Don't descend into gpl3 unless we are building a gpl3 tool.
Only build binutils if we want 2.19 [sic]


To generate a diff of this commit:
cvs rdiff -u -r1.16.6.1 -r1.16.6.1.2.1 src/external/Makefile
cvs rdiff -u -r1.6 -r1.6.6.1 src/external/gpl3/Makefile

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



CVS commit: src/sys/dev/usb

2012-11-20 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Nov 21 08:00:56 UTC 2012

Modified Files:
src/sys/dev/usb: usbdevices.config

Log Message:
Add audio* at uaudio?


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/dev/usb/usbdevices.config

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