svn commit: r256766 - head/sys/geom/label

2013-10-19 Thread Edward Tomasz Napierala
Author: trasz Date: Sat Oct 19 08:20:00 2013 New Revision: 256766 URL: http://svnweb.freebsd.org/changeset/base/256766 Log: Fix build with gcc by spelling unused format string as "unused" instead of NULL. MFC after:29 days Modified: head/sys/geom/label/g_label.c Modified: head/sys/

svn commit: r256767 - head/usr.sbin/freebsd-update

2013-10-19 Thread Dag-Erling Smørgrav
Author: des Date: Sat Oct 19 09:40:29 2013 New Revision: 256767 URL: http://svnweb.freebsd.org/changeset/base/256767 Log: Allow ~ in file names so libtool droppings in contrib don't break updates. It has happened twice now, and is likely to happen again. Errata notice candidate. Modified

svn commit: r256768 - head/sbin/ifconfig

2013-10-19 Thread Dag-Erling Smørgrav
Author: des Date: Sat Oct 19 09:59:11 2013 New Revision: 256768 URL: http://svnweb.freebsd.org/changeset/base/256768 Log: Do not error out when adding an interface to a group to which it already belongs or removing it from a group to which it does not belong. This makes it possible to inclu

svn commit: r256769 - in head: . etc/mtree

2013-10-19 Thread Dag-Erling Smørgrav
Author: des Date: Sat Oct 19 10:00:51 2013 New Revision: 256769 URL: http://svnweb.freebsd.org/changeset/base/256769 Log: Last few remnants of BIND (hopefully...) MFC after:3 days Modified: head/ObsoleteFiles.inc head/etc/mtree/BSD.usr.dist Modified: head/ObsoleteFiles.inc ===

svn commit: r256770 - head/usr.sbin/pkg

2013-10-19 Thread Gavin Atkinson
Author: gavin Date: Sat Oct 19 15:36:21 2013 New Revision: 256770 URL: http://svnweb.freebsd.org/changeset/base/256770 Log: Improve bootstrapping message MFC after:3 days Modified: head/usr.sbin/pkg/pkg.c Modified: head/usr.sbin/pkg/pkg.c

svn commit: r256771 - head/sys/dev/drm2/radeon

2013-10-19 Thread Jean-Sebastien Pedron
Author: dumbbell Date: Sat Oct 19 17:11:58 2013 New Revision: 256771 URL: http://svnweb.freebsd.org/changeset/base/256771 Log: drm/radeon: radeonkms depends on firmware(9) Submitted by: tijl@ Modified: head/sys/dev/drm2/radeon/radeon_drv.c Modified: head/sys/dev/drm2/radeon/radeon_drv.c

svn commit: r256772 - head/sys/netinet

2013-10-19 Thread Kevin Lo
Author: kevlo Date: Sat Oct 19 18:13:32 2013 New Revision: 256772 URL: http://svnweb.freebsd.org/changeset/base/256772 Log: - Add parentheses to all internet addresses - All the casts to uint32_t should be to in_addr_t Suggested by: bde Reviewed by: bde Modified: head/sys/netinet/in

svn commit: r256773 - in head: etc/defaults etc/rc.d etc/sendmail share/man/man8

2013-10-19 Thread John-Mark Gurney
Author: jmg Date: Sat Oct 19 18:51:06 2013 New Revision: 256773 URL: http://svnweb.freebsd.org/changeset/base/256773 Log: Enable the automatic creation of a certificate (if one does not exists) and enable the usage by sendmail if sendmail is enabled. Include and document knobs to disable th

Re: svn commit: r256767 - head/usr.sbin/freebsd-update

2013-10-19 Thread Colin Percival
On 10/19/13 02:40, Dag-Erling Smørgrav wrote: > - P="[-+./:=%@_[[:alnum:]]" > + P="[-+./:=%@_[~[:alnum:]]" Shouldn't this be P="[-+./:=%@_~[[:alnum:]]" instead? -- Colin Percival Security Officer Emeritus, FreeBSD | The power to serve Founder, Tarsnap | www.tarsnap.com | Online b

Re: svn commit: r256768 - head/sbin/ifconfig

2013-10-19 Thread Adrian Chadd
... erm, this could break many existing scripts that stupidly(!) just try adding an interface to a group to see if it's already there. Is the ifconfig error behavour in this instance documented anywhere? -adrian On 19 October 2013 02:59, Dag-Erling Smørgrav wrote: > Author: des > Date: Sat

svn commit: r256774 - head/sys/arm/freescale/imx

2013-10-19 Thread Ian Lepore
Author: ian Date: Sat Oct 19 21:33:06 2013 New Revision: 256774 URL: http://svnweb.freebsd.org/changeset/base/256774 Log: Clock divisors 0-3 correspond to dividing by 1-4, so add 1 before dividing. Modified: head/sys/arm/freescale/imx/imx51_ccm.c Modified: head/sys/arm/freescale/imx/imx51_cc

svn commit: r256775 - in head: etc etc/defaults share/man/man5 share/man/man8

2013-10-19 Thread Colin Percival
Author: cperciva Date: Sat Oct 19 21:37:06 2013 New Revision: 256775 URL: http://svnweb.freebsd.org/changeset/base/256775 Log: Add support for "first boot" rc.d scripts. [1] These scripts, containing # KEYWORD: firstboot will only be run if a sentinel file (default: /firstboot, configur

Re: svn commit: r256767 - head/usr.sbin/freebsd-update

2013-10-19 Thread Jilles Tjoelker
On Sat, Oct 19, 2013 at 01:03:51PM -0700, Colin Percival wrote: > On 10/19/13 02:40, Dag-Erling Smørgrav wrote: > > - P="[-+./:=%@_[[:alnum:]]" > > + P="[-+./:=%@_[~[:alnum:]]" > Shouldn't this be > P="[-+./:=%@_~[[:alnum:]]" > instead? That is equivalent. Both versions match an open sq

svn commit: r256776 - head/sys/sys

2013-10-19 Thread Colin Percival
Author: cperciva Date: Sat Oct 19 21:55:42 2013 New Revision: 256776 URL: http://svnweb.freebsd.org/changeset/base/256776 Log: Bump __FreeBSD_version to 111 for addition of support for "first boot" rc.d scripts, so that ports can make use of this. Modified: head/sys/sys/param.h Modifie

Re: svn commit: r256767 - head/usr.sbin/freebsd-update

2013-10-19 Thread Colin Percival
On 10/19/13 14:53, Jilles Tjoelker wrote: > On Sat, Oct 19, 2013 at 01:03:51PM -0700, Colin Percival wrote: >> On 10/19/13 02:40, Dag-Erling Smørgrav wrote: >>> - P="[-+./:=%@_[[:alnum:]]" >>> + P="[-+./:=%@_[~[:alnum:]]" > >> Shouldn't this be >> P="[-+./:=%@_~[[:alnum:]]" >> instead? >

svn commit: r256777 - head/sys/powerpc/pseries

2013-10-19 Thread Nathan Whitehorn
Author: nwhitehorn Date: Sun Oct 20 01:28:39 2013 New Revision: 256777 URL: http://svnweb.freebsd.org/changeset/base/256777 Log: Allow hypervisor calls with more than 7 arguments. Modified: head/sys/powerpc/pseries/phyp-hvcall.S Modified: head/sys/powerpc/pseries/phyp-hvcall.S ==

svn commit: r256778 - in head/sys: conf powerpc/conf powerpc/pseries

2013-10-19 Thread Nathan Whitehorn
Author: nwhitehorn Date: Sun Oct 20 01:31:09 2013 New Revision: 256778 URL: http://svnweb.freebsd.org/changeset/base/256778 Log: Add initial driver for POWER hypervisor interpartition ethernet. This is sufficient to pass traffic but needs some more work before merging to STABLE. Added: he

svn commit: r256779 - head/sys/powerpc/pseries

2013-10-19 Thread Nathan Whitehorn
Author: nwhitehorn Date: Sun Oct 20 01:40:59 2013 New Revision: 256779 URL: http://svnweb.freebsd.org/changeset/base/256779 Log: Clean up some debug code that snuck in. Add a block comment on future work. Modified: head/sys/powerpc/pseries/phyp_llan.c Modified: head/sys/powerpc/pseries/phyp_