From owner-svn-src-all@FreeBSD.ORG Sun Dec 26 20:25:08 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFDF11065670; Sun, 26 Dec 2010 20:25:08 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from mail.cksoft.de (mail.cksoft.de [IPv6:2001:4068:10::3]) by mx1.freebsd.org (Postfix) with ESMTP id 3D6008FC12; Sun, 26 Dec 2010 20:25:08 +0000 (UTC) Received: from localhost (amavis.fra.cksoft.de [192.168.74.71]) by mail.cksoft.de (Postfix) with ESMTP id EC22F41C690; Sun, 26 Dec 2010 21:25:06 +0100 (CET) X-Virus-Scanned: amavisd-new at cksoft.de Received: from mail.cksoft.de ([192.168.74.103]) by localhost (amavis.fra.cksoft.de [192.168.74.71]) (amavisd-new, port 10024) with ESMTP id MSnFVsMBpFPR; Sun, 26 Dec 2010 21:25:06 +0100 (CET) Received: by mail.cksoft.de (Postfix, from userid 66) id 1359D41C677; Sun, 26 Dec 2010 21:25:06 +0100 (CET) Received: from maildrop.int.zabbadoz.net (maildrop.int.zabbadoz.net [10.111.66.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.int.zabbadoz.net (Postfix) with ESMTP id 0746D44490B; Sun, 26 Dec 2010 20:23:18 +0000 (UTC) Date: Sun, 26 Dec 2010 20:23:18 +0000 (UTC) From: "Bjoern A. Zeeb" X-X-Sender: bz@maildrop.int.zabbadoz.net To: Warner Losh In-Reply-To: <201012240455.oBO4tvJ4079108@svn.freebsd.org> Message-ID: <20101226202125.C6126@maildrop.int.zabbadoz.net> References: <201012240455.oBO4tvJ4079108@svn.freebsd.org> X-OpenPGP-Key: 0x14003F198FEFA3E77207EE8D2B58B8F83CCF1842 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r216685 - head X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Dec 2010 20:25:08 -0000 On Fri, 24 Dec 2010, Warner Losh wrote: > Author: imp > Date: Fri Dec 24 04:55:56 2010 > New Revision: 216685 > URL: http://svn.freebsd.org/changeset/base/216685 > > Log: > Redirect stderr from config to /dev/null. config -m is printing lots > of annoying warnings when dealing with arm. The arm config files need > to be fixed, but this restricts the output to a more useful place. I'll assume these are the warning about duplicate devices and options. Would we get the same warnings again when actually running config on the kernel config files and will they then go to the logs? > Modified: > head/Makefile > > Modified: head/Makefile > ============================================================================== > --- head/Makefile Fri Dec 24 04:52:53 2010 (r216684) > +++ head/Makefile Fri Dec 24 04:55:56 2010 (r216685) > @@ -350,8 +350,8 @@ KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/ > universe_kernconfs: > .for kernel in ${KERNCONFS} > TARGET_ARCH_${kernel}!= cd ${.CURDIR}/sys/${TARGET}/conf && \ > - config -m ${.CURDIR}/sys/${TARGET}/conf/${kernel} | \ > - cut -f 2 > + config -m ${.CURDIR}/sys/${TARGET}/conf/${kernel} 2> /dev/null | \ > + cut -f 2 > universe_kernconfs: universe_kernconf_${TARGET}_${kernel} > universe_kernconf_${TARGET}_${kernel}: > @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \ > -- Bjoern A. Zeeb Welcome a new stage of life. Going to jail sucks -- All my daemons like it! http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/jails.html