From owner-freebsd-ppc Sun Feb 23 17:51:21 2003 Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9E2C37B405 for ; Sun, 23 Feb 2003 17:51:19 -0800 (PST) Received: from gt3.OntheNet.com.au (nt.com.au [203.13.70.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68F7943FDF for ; Sun, 23 Feb 2003 17:51:18 -0800 (PST) (envelope-from grehan@freebsd.org) Received: from freebsd.org (CPE-203-45-238-180.qld.bigpond.net.au [203.45.238.180]) by gt3.OntheNet.com.au (8.12.6/8.12.6) with ESMTP id h1O1pFVU073373; Mon, 24 Feb 2003 11:51:16 +1000 (EST) (envelope-from grehan@freebsd.org) Message-ID: <3E597B02.5AED887E@freebsd.org> Date: Mon, 24 Feb 2003 11:53:06 +1000 From: Peter Grehan X-Mailer: Mozilla 4.79 [en] (X11; U; Linux 2.2.14-12 i686) X-Accept-Language: en MIME-Version: 1.0 To: Sean_Welch@alum.wofford.org Cc: freebsd-ppc@freebsd.org Subject: Re: Also interested in testing References: <5359862.1046051099516.JavaMail.nobody@grover.psp.pas.earthlink.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ppc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > install: /usr/src/sys/boot/powerpc/loader/loader.help: No such file or directory touch /usr/src/sys/boot/powerpc/loader/loader.help ... will get past this. > machine/cpufunc.h:37: `powerpc_mb' previously defined here Sorry, this was my mistake from yesterday, now fixed. Unfortunately the ATA code is out of sync with Soren's reent ATAng checking, so the kernel build will still fail. Patch attached, should be fixed in CVS shortly. later, Peter. diff -r1.3 ata_macio.c 43a44 > #include 288,294d288 < static int < ata_macio_intrnoop(struct ata_channel *ch) < { < < return (1); < } < 300a295,300 > static void > ata_macio_setmode(struct ata_device *atadev, int mode) > { > atadev->mode = ATA_PIO; > } > 309,311c309,312 < ch->flags = ATA_USE_16BIT; < ch->intr_func = ata_macio_intrnoop; < ch->lock_func = ata_macio_locknoop; --- > ch->flags |= ATA_USE_16BIT; > ch->locking = ata_macio_locknoop; > ch->device[MASTER].setmode = ata_macio_setmode; > ch->device[SLAVE].setmode = ata_macio_setmode; 314a316,318 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ppc" in the body of the message