From owner-freebsd-questions@FreeBSD.ORG Sun Jun 20 17:43:36 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45A5816A4CF for ; Sun, 20 Jun 2004 17:43:36 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 3F43D43D2D for ; Sun, 20 Jun 2004 17:43:35 +0000 (GMT) (envelope-from ph.schulz@gmx.de) Received: (qmail 26533 invoked by uid 65534); 20 Jun 2004 17:43:33 -0000 Received: from p5090CC38.dip0.t-ipconnect.de (EHLO gmx.de) (80.144.204.56) by mail.gmx.net (mp004) with SMTP; 20 Jun 2004 19:43:33 +0200 X-Authenticated: #1954550 Message-ID: <40D5CCA5.7050701@gmx.de> Date: Sun, 20 Jun 2004 19:43:01 +0200 From: Phil Schulz User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040520 X-Accept-Language: de, en-us, en MIME-Version: 1.0 To: Bernard Dugas References: <40CEB82C.7010903_is-production.com@ns.sol.net> <40CF95DA.2000104@lineone.net> <40D3F27E.9070200@is-production.com> <40D42BDE.2050609@gmx.de> <40D5C106.6060506@is-production.com> In-Reply-To: <40D5C106.6060506@is-production.com> Content-Type: multipart/mixed; boundary="------------060305070402090600020904" cc: Robert Downes cc: FreeBSD Questions Subject: Re: Any 4.10 installation on asus pundit ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Jun 2004 17:43:36 -0000 This is a multi-part message in MIME format. --------------060305070402090600020904 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit >> my desktop machine using (I think) 4.9-Release. It started when I had >> to change the motherboard. The new one came w/ an SiS chipset that >> wasn't supported by FreeBSD. I solved the problem by adding a line to >> /sys/dev/ata/ata-dma.c. It worked for a few weeks w/o any problems >> until I switched to RELENG_5_2 for various other reasons. >> You might want to post what chipset your mainboard uses. > > > http://www.asus.com/prog/spec.asp?m=Pundit&langs=01 > -> Chipset SIS 651/962 > -> Lan Broadcom BCM4401 > Try to apply the attached patch to /sys/dev/ata/ata-dma.c Neither do I have a mainboard w/ the same chipset as yours nor do I have any PC running RELENG_4 atm. But I had to apply sth similar to make my SiS-746(?)-based mainboard work under RELENG_4. I'm not a developer so I don't know if it's a good and clean solution but it worked for me back then. > In addition, I can't find the bfe0 network driver for the Broadcom > BCM4401 in the kernel configuration, but the 4.10 release notes told > the bfe should be in. > From bfe(4): "The bfe device driver first appeared in FreeBSD 5.1." --------------060305070402090600020904 Content-Type: text/plain; name="sis651.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="sis651.patch" --- ata-dma.c.old Sun Jun 20 19:30:10 2004 +++ ata-dma.c Sun Jun 20 19:23:41 2004 @@ -669,6 +669,7 @@ ata_find_dev(parent, 0x06401039, 0) || /* SiS 640 */ ata_find_dev(parent, 0x06451039, 0) || /* SiS 645 */ ata_find_dev(parent, 0x06501039, 0) || /* SiS 650 */ + ata_find_dev(parent, 0x06511039, 0) || /* SiS 651 */ ata_find_dev(parent, 0x07301039, 0) || /* SiS 730 */ ata_find_dev(parent, 0x07331039, 0) || /* SiS 733 */ ata_find_dev(parent, 0x07351039, 0) || /* SiS 735 */ --------------060305070402090600020904--