Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Feb 2000 14:59:54 +0100 (CET)
From:      Soren Schmidt <sos@freebsd.dk>
To:        bleez@netaxs.com (Bryan Liesner)
Cc:        current@FreeBSD.ORG
Subject:   Re: Big ATA problems
Message-ID:  <200002191359.OAA50270@freebsd.dk>
In-Reply-To: <Pine.BSF.4.21.0002190600480.2950-100000@gravy.kishka.net> from Bryan Liesner at "Feb 19, 2000 06:08:38 am"

next in thread | previous in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200002191359.OAA50270>