From owner-freebsd-current Sat Feb 19 6: 0:16 2000 Delivered-To: freebsd-current@freebsd.org Received: from freebsd.dk (freebsd.dk [212.242.42.178]) by hub.freebsd.org (Postfix) with ESMTP id 4E22B37BC15 for ; Sat, 19 Feb 2000 06:00:03 -0800 (PST) (envelope-from sos@freebsd.dk) Received: (from sos@localhost) by freebsd.dk (8.9.3/8.9.1) id OAA50270; Sat, 19 Feb 2000 14:59:54 +0100 (CET) (envelope-from sos) From: Soren Schmidt Message-Id: <200002191359.OAA50270@freebsd.dk> Subject: Re: Big ATA problems In-Reply-To: from Bryan Liesner at "Feb 19, 2000 06:08:38 am" To: bleez@netaxs.com (Bryan Liesner) Date: Sat, 19 Feb 2000 14:59:54 +0100 (CET) Cc: current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It seems Bryan Liesner wrote: > On Sat, 19 Feb 2000, Soren Schmidt wrote: > > >It seems Bryan Liesner wrote: > >> > >> The latest ata commits left my system completely unbootable. No disks > >> were probed. > > > >He, you always seem to be lucky when I change something :) > > I always hold my breath when I cvsup and see changes to ata* :) > > > >Hmm, yes you have one of those motherboards that screw the order > >of the controllers, it is an ASUS aliddin right ?? For those that has this problem, this patch should do the trick: Index: ata-all.c =================================================================== RCS file: /home/ncvs/src/sys/dev/ata/ata-all.c,v retrieving revision 1.48 diff -u -r1.48 ata-all.c --- ata-all.c 2000/02/18 20:57:27 1.48 +++ ata-all.c 2000/02/19 13:58:58 @@ -336,7 +336,7 @@ if (pci_get_progif(dev) & PCIP_STORAGE_IDE_MASTERDEV) lun = unit; else - lun = -1; + lun = 2; if (!(child = device_add_child(dev, "ata", lun))) return ENOMEM; -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message