From owner-svn-src-head@FreeBSD.ORG Sat Dec 27 17:06:26 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 950F31065670; Sat, 27 Dec 2008 17:06:26 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.241]) by mx1.freebsd.org (Postfix) with ESMTP id 20B648FC17; Sat, 27 Dec 2008 17:06:25 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: by an-out-0708.google.com with SMTP id c2so1606433anc.13 for ; Sat, 27 Dec 2008 09:06:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:references:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:x-mailer :mime-version:subject:date:cc; bh=P47vvkxVEgLdu9Fd7o81VL+l6D9k0TFyJ3tZCnhyjwA=; b=AAorys0fQXbTJCbrEiS5qVFoqcMGDWSH9uM+xFQaZJnWnupERyZ1oiqPrhNN/0zRXA O+1aeNxBZ9ghBTWUfR3hZ0npwGO/HkTOeHl+JtZFZZZD2egyKqFbFksmV+ly1ZUzdb04 yZ013kLDxEZIZ7xkzjEhF1hpLbqLI55MWGvFY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=references:message-id:from:to:in-reply-to:content-type :content-transfer-encoding:x-mailer:mime-version:subject:date:cc; b=pKv9rWc2bKEiB0KD0qXW3Ai1V+T6zCO6n8Q1fnhSwh/q98tpUnnJSWGysw9MaOJOFn ZSNLBob/uVbS/tqy7ksSRyFpSTfAjSYkXD87qi8vXjDaEi82zm0bC+ENszZEt6OYrq70 /WRyMoJEQXJ6/xWblfzE6zN6T0EPZA7AnyO7A= Received: by 10.100.127.15 with SMTP id z15mr6872554anc.10.1230397585415; Sat, 27 Dec 2008 09:06:25 -0800 (PST) Received: from ?10.86.56.206? ([32.155.163.96]) by mx.google.com with ESMTPS id b14sm21101469ana.12.2008.12.27.09.06.10 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 27 Dec 2008 09:06:24 -0800 (PST) References: <200812271507.mBRF7pkv074681@svn.freebsd.org> <20081227150827.D97918@maildrop.int.zabbadoz.net> Message-Id: <26259E4E-6E26-4DAE-8046-80C7C46B7CD5@gmail.com> From: Garrett Cooper To: "Bjoern A. Zeeb" In-Reply-To: <20081227150827.D97918@maildrop.int.zabbadoz.net> Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Mailer: iPhone Mail (5F136) Mime-Version: 1.0 (iPhone Mail 5F136) Date: Sat, 27 Dec 2008 09:05:58 -0800 Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , "M. Warner Losh" 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 17:06:26 -0000 On Dec 27, 2008, at 7:13, "Bjoern A. Zeeb" wrote: > 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. *paging mr Losh -- mr Losh!* > >> 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.