From owner-svn-src-head@FreeBSD.ORG Sat Dec 27 15:15:08 2008 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50EAC106564A; Sat, 27 Dec 2008 15:15:08 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from mail.cksoft.de (mail.cksoft.de [62.111.66.27]) by mx1.freebsd.org (Postfix) with ESMTP id 088218FC16; Sat, 27 Dec 2008 15:15:07 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from localhost (amavis.str.cksoft.de [192.168.74.71]) by mail.cksoft.de (Postfix) with ESMTP id 7CCB241C5D0; Sat, 27 Dec 2008 16:15:05 +0100 (CET) X-Virus-Scanned: amavisd-new at cksoft.de Received: from mail.cksoft.de ([62.111.66.27]) by localhost (amavis.str.cksoft.de [192.168.74.71]) (amavisd-new, port 10024) with ESMTP id TEh-ItXPjdoh; Sat, 27 Dec 2008 16:15:05 +0100 (CET) Received: by mail.cksoft.de (Postfix, from userid 66) id 1B9D441C5EB; Sat, 27 Dec 2008 16:15:05 +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 C93524448D5; Sat, 27 Dec 2008 15:13:46 +0000 (UTC) Date: Sat, 27 Dec 2008 15:13:46 +0000 (UTC) From: "Bjoern A. Zeeb" X-X-Sender: bz@maildrop.int.zabbadoz.net To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org In-Reply-To: <200812271507.mBRF7pkv074681@svn.freebsd.org> Message-ID: <20081227150827.D97918@maildrop.int.zabbadoz.net> References: <200812271507.mBRF7pkv074681@svn.freebsd.org> X-OpenPGP-Key: 0x14003F198FEFA3E77207EE8D2B58B8F83CCF1842 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Subject: Re: svn commit: r186519 - head X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Dec 2008 15:15:08 -0000 On Sat, 27 Dec 2008, Bjoern A. Zeeb wrote: > Author: bz > Date: Sat Dec 27 15:07:51 2008 > New Revision: 186519 > URL: http://svn.freebsd.org/changeset/base/186519 > > Log: > Permit digits at the beginning and end of kernel config file names for > `make universe'. This catches a few more arm and, once enabled, mips > configs and permits having local configs named like NOINET6. FYI: current state of `make universe': - Does not complete for a few arm configs. Patch to fix this, is here fore review: http://people.freebsd.org/~bz/20081227-01-arm-conf.diff - Does not complete for one i386 config. Will commit as soon as the compiles finish. Experimental: - For mips which is not yet part of universe: + kernels compile fine after I had fixed one earlier today. + world does not build but fails in libpam. > Modified: > head/Makefile > > Modified: head/Makefile > ============================================================================== > --- head/Makefile Sat Dec 27 14:34:33 2008 (r186518) > +++ head/Makefile Sat Dec 27 15:07:51 2008 (r186519) > @@ -298,7 +298,7 @@ universe_prologue: > .endif > .for target in ${TARGETS} > KERNCONFS!= cd ${.CURDIR}/sys/${target}/conf && \ > - find [A-Z]*[A-Z] -type f -maxdepth 0 \ > + find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \ > ! -name DEFAULTS ! -name LINT > KERNCONFS:= ${KERNCONFS:S/^NOTES$/LINT/} > universe: universe_${target} > -- Bjoern A. Zeeb The greatest risk is not taking one.