From owner-freebsd-bugs@FreeBSD.ORG Sun Sep 23 19:26:39 2007 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA2DA16A417 for ; Sun, 23 Sep 2007 19:26:39 +0000 (UTC) (envelope-from alex-goncharov@comcast.net) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.200.81]) by mx1.freebsd.org (Postfix) with ESMTP id 6671513C447 for ; Sun, 23 Sep 2007 19:26:39 +0000 (UTC) (envelope-from alex-goncharov@comcast.net) Received: from [24.61.20.41] (c-24-61-20-41.hsd1.ma.comcast.net[24.61.20.41]) by comcast.net (sccrmhc11) with ESMTP id <2007092319151801100kchkse>; Sun, 23 Sep 2007 19:15:18 +0000 Received: from algo by [24.61.20.41] with local (Exim 4.68 (FreeBSD)) (envelope-from ) id 1IZWvG-0005a7-2H; Sun, 23 Sep 2007 15:15:18 -0400 From: Alex Goncharov To: freebsd-bugs@FreeBSD.org In-reply-to: <200709171112.l8HBCwe6051631@freefall.freebsd.org> (message from FreeBSD bugmaster on Mon, 17 Sep 2007 11:12:58 GMT) From: Alex Goncharov References: <200709171112.l8HBCwe6051631@freefall.freebsd.org> Message-Id: Sender: Alex Goncharov Date: Sun, 23 Sep 2007 15:15:18 -0400 Cc: Alex Goncharov Subject: sys/pci/agp_i810.c misses i845G chipset [Re: Current problem reports] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alex Goncharov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2007 19:26:39 -0000 Back in July I submitted this bug: | Synopsis: [agp] [patch] sys/pci/agp_i810.c misses i845G chipset | Responsible-Changed-From-To: freebsd-bugs->anholt | Responsible-Changed-By: linimon | Responsible-Changed-When: Sun Jul 22 04:09:37 UTC 2007 | Responsible-Changed-Why: anholt is interested in agp PRs. | http://www.freebsd.org/cgi/query-pr.cgi?pr=114802 with a proposed fix. While the file in question has been updated since then: __FBSDID("$FreeBSD: src/sys/pci/agp_i810.c,v 1.41 2007/09/15 18:16:35 alc Exp $" the patch I submitted when filing the bug has not made it in. What it means for me is that every time I "cvsup" `/usr/src', I need to remember to apply my patch to this file, or else the X server won't start after the reboot and I need to apply the patch and rebuild everything in the less friendly environment. Ultimately, I decided to ask if somebody on this list could apply and commit the following patch some time soon. Please!... The patch is here and works consistently well: ============================================================ --- sys/pci/agp_i810.c 2007-09-15 14:16:35.000000000 -0400 +++ sys/pci/agp_i810.c.fixed 2007-09-16 09:04:57.000000000 -0400 @@ -130,6 +130,8 @@ "Intel 82815 (i815 GMCH) SVGA controller"}, {0x35778086, CHIP_I830, 0x00020000, "Intel 82830M (830M GMCH) SVGA controller"}, + {0x25628086, CHIP_I830, 0x00020000, + "Intel 82845M (845M GMCH) SVGA controller"}, {0x35828086, CHIP_I855, 0x00020000, "Intel 82852/5"}, {0x25728086, CHIP_I855, 0x00020000, ============================================================ Thanks! -- Alex -- alex-goncharov@comcast.net