From owner-svn-src-head@FreeBSD.ORG Sat May 16 20:31:29 2009 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 740FF106566B; Sat, 16 May 2009 20:31:29 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 2D81C8FC12; Sat, 16 May 2009 20:31:29 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.3/8.14.1) with ESMTP id n4GKUmUu087606; Sat, 16 May 2009 14:30:48 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sat, 16 May 2009 14:30:59 -0600 (MDT) Message-Id: <20090516.143059.154578167.imp@bsdimp.com> To: ivoras@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <9bbcef730905151538w1d1dbd45oc44004115d6b5d66@mail.gmail.com> References: <200905142153.n4ELrZPE003481@svn.freebsd.org> <9bbcef730905151538w1d1dbd45oc44004115d6b5d66@mail.gmail.com> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, jhb@FreeBSD.org Subject: Re: svn commit: r192122 - in head/sys: amd64/conf i386/conf 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, 16 May 2009 20:31:29 -0000 In message: <9bbcef730905151538w1d1dbd45oc44004115d6b5d66@mail.gmail.co= m> Ivan Voras writes: : 2009/5/14 John Baldwin : : > Author: jhb : > Date: Thu May 14 21:53:35 2009 : > New Revision: 192122 : > URL: http://svn.freebsd.org/changeset/base/192122 : > : > Log: : > =A0Trim the default set of device hints on i386 and amd64: : > =A0- Remove vga0 and the disabled uart2/uart3 hints from both platf= orms. : > =A0- Remove hints for ISA adv0, bt0, aha0, aic0, ed0, cs0, sn0, ie0= , fe0, and : > =A0 =A0le0 from i386. =A0All these hints were marked 'disabled' and= thus already : > =A0 =A0did not work "out of the box". : = : > -hint.le.0.at=3D"isa" : > -hint.le.0.disabled=3D"1" : > -hint.le.0.port=3D"0x280" : > -hint.le.0.irq=3D"10" : > -hint.le.0.drq=3D"0" : = : Heh, this will again change the behaviour under virtualization hosts : that emulate this hardware. Sometime before 7.0 the addition of this : hint caused all leX devices to be renamed le(X+1) because le0 was : taken and disabled. Restoring this will cause the same thing in : reverse. Unless someone actually has this hardware (as opposed to its= : emulation) and needs the hint for something, I'd suggest these : particular lines be removed before 8.0 to restore the original : behaviour quickly. Obviously, they cannot be MFC-ed to 7-STABLE Generically, this has been the case since: r61640 | peter | 2000-06-13 16:28:50 -0600 (Tue, 13 Jun 2000) | 47 line= s Warner