svn commit: r244924 - head/tools/regression/bin/sh/errors

2013-01-01 Thread Jilles Tjoelker
Author: jilles Date: Tue Jan 1 12:48:24 2013 New Revision: 244924 URL: http://svnweb.freebsd.org/changeset/base/244924 Log: sh: Fix a Subversion property. Test scripts should have keywords; only pure output that must match exactly should have keywords disabled. Modified: Directory Prope

svn commit: r244925 - in head/sys: kern sys ufs/ffs

2013-01-01 Thread Konstantin Belousov
Author: kib Date: Tue Jan 1 16:14:48 2013 New Revision: 244925 URL: http://svnweb.freebsd.org/changeset/base/244925 Log: The process_deferred_inactive() function locks the vnodes of the ufs mount, which means that is must not be called while the snaplock is owned. The vfs_write_resume(9) d

svn commit: r244926 - head/sys/dev/agp

2013-01-01 Thread Antoine Brodin
Author: antoine Date: Tue Jan 1 18:16:49 2013 New Revision: 244926 URL: http://svnweb.freebsd.org/changeset/base/244926 Log: Remove unneeded semicolons. Reviewed by: md5 of the object files Modified: head/sys/dev/agp/agp_ali.c head/sys/dev/agp/agp_amd.c head/sys/dev/agp/agp_amd64.c

svn commit: r244927 - head/usr.bin/m4

2013-01-01 Thread Antoine Brodin
Author: antoine Date: Tue Jan 1 18:25:14 2013 New Revision: 244927 URL: http://svnweb.freebsd.org/changeset/base/244927 Log: Add missing DPADD. Modified: head/usr.bin/m4/Makefile Modified: head/usr.bin/m4/Makefile =

svn commit: r244929 - head/sbin/pflogd

2013-01-01 Thread Antoine Brodin
Author: antoine Date: Tue Jan 1 18:28:21 2013 New Revision: 244929 URL: http://svnweb.freebsd.org/changeset/base/244929 Log: pflogd does not depend on libutil Modified: head/sbin/pflogd/Makefile Modified: head/sbin/pflogd/Makefile

svn commit: r244931 - head/lib/libbsnmp/libbsnmp

2013-01-01 Thread Antoine Brodin
Author: antoine Date: Tue Jan 1 18:29:25 2013 New Revision: 244931 URL: http://svnweb.freebsd.org/changeset/base/244931 Log: Add missing DPADD Modified: head/lib/libbsnmp/libbsnmp/Makefile Modified: head/lib/libbsnmp/libbsnmp/Makefile

svn commit: r244933 - head/gnu/usr.bin/dialog

2013-01-01 Thread Antoine Brodin
Author: antoine Date: Tue Jan 1 18:31:21 2013 New Revision: 244933 URL: http://svnweb.freebsd.org/changeset/base/244933 Log: Fix a dependency Modified: head/gnu/usr.bin/dialog/Makefile Modified: head/gnu/usr.bin/dialog/Makefile ===

Re: svn commit: r244899 - head/sys/mips/beri

2013-01-01 Thread Garrett Cooper
On Mon, Dec 31, 2012 at 3:06 AM, Robert Watson wrote: > Author: rwatson > Date: Mon Dec 31 11:06:37 2012 > New Revision: 244899 > URL: http://svnweb.freebsd.org/changeset/base/244899 > > Log: > If FDT is compiled into a FreeBSD/beri kernel, initialise OpenFirmware. > > Sponsored by: DARPA, AFR

svn commit: r244939 - head/sys/arm/ti/cpsw

2013-01-01 Thread Tim Kientzle
Author: kientzle Date: Tue Jan 1 18:55:04 2013 New Revision: 244939 URL: http://svnweb.freebsd.org/changeset/base/244939 Log: Overhauled CPSW driver for TI CPSW Ethernet module (as used in AM335x SoC for BeagleBone). Among other things: * Watchdog reset doesn't hang the driver. * D

svn commit: r244941 - head/lib/libedit

2013-01-01 Thread Pedro F. Giffuni
Author: pfg Date: Tue Jan 1 19:20:51 2013 New Revision: 244941 URL: http://svnweb.freebsd.org/changeset/base/244941 Log: libedit: bind the correct command when using "bind -k". "ed-argument-digit" (i. e. command 0) was incorrectly used instead. This bug comes from the original sources

Re: svn commit: r244899 - head/sys/mips/beri

2013-01-01 Thread Andrew Turner
On Mon, 31 Dec 2012 11:06:38 + (UTC) Robert Watson wrote: > Author: rwatson > Date: Mon Dec 31 11:06:37 2012 > New Revision: 244899 > URL: http://svnweb.freebsd.org/changeset/base/244899 > > Log: > If FDT is compiled into a FreeBSD/beri kernel, initialise > OpenFirmware. > Sponsored by:

svn commit: r244942 - head/sys/mips/beri

2013-01-01 Thread Robert Watson
Author: rwatson Date: Tue Jan 1 19:42:06 2013 New Revision: 244942 URL: http://svnweb.freebsd.org/changeset/base/244942 Log: Merge @219932 from Perforce: FDT headers can't be included if the kernel is compiled without FDT support, due to dependence on generated kobj headers. BERI

Re: svn commit: r244899 - head/sys/mips/beri

2013-01-01 Thread Robert N. M. Watson
Hi Garrett: Thanks for the report -- I didn't realise tinderbox was now building all kernels, or I would have merged my fix from P4 more quickly. The patch you've attached isn't quite the right one -- BERI supports both FDT and non-FDT kernels, so we shouldn't build the Openfirmware headers in

Re: svn commit: r244899 - head/sys/mips/beri

2013-01-01 Thread Robert N. M. Watson
On 1 Jan 2013, at 19:17, Andrew Turner wrote: >> @@ -76,6 +85,17 @@ mips_init(void) >> { >> int i; >> >> +#ifdef FDT >> +#ifndef FDT_DTB_STATIC >> +#error "mips_init with FDT requires FDT_DTB_STATIC" >> +#endif >> + >> +if (OF_install(OFW_FDT, 0) == FALSE) >> +while (1)

Re: svn commit: r244899 - head/sys/mips/beri

2013-01-01 Thread Robert N. M. Watson
On 1 Jan 2013, at 19:17, Andrew Turner wrote: > This looks like it is too late in the boot process. If you are using > FDT you will need to use the FDT uart which is initialised in cninit. On a semi-related note: the current obstacle to moving more devices over to using FDT on BERI is that our

Re: svn commit: r244899 - head/sys/mips/beri

2013-01-01 Thread Andrew Turner
On Tue, 1 Jan 2013 20:56:15 + "Robert N. M. Watson" wrote: > > On 1 Jan 2013, at 19:17, Andrew Turner wrote: > > > This looks like it is too late in the boot process. If you are using > > FDT you will need to use the FDT uart which is initialised in > > cninit. > > On a semi-related note: t

svn commit: r244943 - in head/sys/dev/ath/ath_hal: ar5416 ar9002

2013-01-01 Thread Adrian Chadd
Author: adrian Date: Wed Jan 2 00:38:01 2013 New Revision: 244943 URL: http://svnweb.freebsd.org/changeset/base/244943 Log: Bring over the basic spectral scan framework code from Qualcomm Atheros. This includes the HAL routines to setup, enable/activate/disable spectral scan and configur

svn commit: r244945 - in head/sys: conf modules/ath

2013-01-01 Thread Adrian Chadd
Author: adrian Date: Wed Jan 2 01:24:36 2013 New Revision: 244945 URL: http://svnweb.freebsd.org/changeset/base/244945 Log: Add missing update to link ar5416_spectral.c into the build. Modified: head/sys/conf/files head/sys/modules/ath/Makefile Modified: head/sys/conf/files ==

svn commit: r244946 - in head/sys/dev/ath: . ath_dfs/null

2013-01-01 Thread Adrian Chadd
Author: adrian Date: Wed Jan 2 01:36:10 2013 New Revision: 244946 URL: http://svnweb.freebsd.org/changeset/base/244946 Log: Add a method to explicitly disable radar reporting if required. Modified: head/sys/dev/ath/ath_dfs/null/dfs_null.c head/sys/dev/ath/if_athdfs.h Modified: head/sys/de

svn commit: r244947 - head/sys/dev/ath

2013-01-01 Thread Adrian Chadd
Author: adrian Date: Wed Jan 2 01:40:23 2013 New Revision: 244947 URL: http://svnweb.freebsd.org/changeset/base/244947 Log: Add spectral HAL accessor methods. Modified: head/sys/dev/ath/if_athvar.h Modified: head/sys/dev/ath/if_athvar.h ==

svn commit: r244950 - head/sys/dev/ath/ath_hal/ar5416

2013-01-01 Thread Adrian Chadd
Author: adrian Date: Wed Jan 2 03:56:20 2013 New Revision: 244950 URL: http://svnweb.freebsd.org/changeset/base/244950 Log: Fix the short repeat option code to not flip the option to 0 when we call this w/ NOVAL set. Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_spectral.c Modified: he

svn commit: r244951 - head/sys/dev/ath

2013-01-01 Thread Adrian Chadd
Author: adrian Date: Wed Jan 2 03:59:02 2013 New Revision: 244951 URL: http://svnweb.freebsd.org/changeset/base/244951 Log: Add a new (skeleton) spectral mode manager module. Added: head/sys/dev/ath/if_ath_spectral.c (contents, props changed) head/sys/dev/ath/if_ath_spectral.h (content

svn commit: r244952 - in head/sys: conf modules/ath

2013-01-01 Thread Adrian Chadd
Author: adrian Date: Wed Jan 2 04:00:54 2013 New Revision: 244952 URL: http://svnweb.freebsd.org/changeset/base/244952 Log: Link if_ath_spectral.c into the build. Modified: head/sys/conf/files head/sys/modules/ath/Makefile Modified: head/sys/conf/files

svn commit: r244953 - in head/tools/tools/ath: . athspectral

2013-01-01 Thread Adrian Chadd
Author: adrian Date: Wed Jan 2 04:02:27 2013 New Revision: 244953 URL: http://svnweb.freebsd.org/changeset/base/244953 Log: Add a very skeletal spectral scan control application. The main use for this is to manually trigger spectral scan operations (athspectral -i athX start) whilst doin

svn commit: r244957 - head/sys/conf

2013-01-01 Thread Hans Petter Selasky
Author: hselasky Date: Wed Jan 2 07:33:43 2013 New Revision: 244957 URL: http://svnweb.freebsd.org/changeset/base/244957 Log: Add missing dependancy. Submitted by: Michael Butler MFC after:1 week Modified: head/sys/conf/files Modified: head/sys/conf/files