Date: Wed, 25 Apr 2001 21:09:00 -0400 From: "Marty Moll" <martym@arbor.edu> To: "Greg Rumple" <grumple@zaphon.llamas.net>, <freebsd-stable@FreeBSD.ORG> Subject: RE: Dell Poweredge 2550 Message-ID: <000801c0cded$7a8d55c0$256afea9@algol> In-Reply-To: <20010424230757.C47984@zaphon.llamas.net>
next in thread | previous in thread | raw e-mail | index | archive | help
> I just purchased a Dell Poweredge 2550 with the on-board Raid Controller
> option, and just burned a copy of the 4.3 release CD to install on it.
> It comes up stating it has a Dell Perc 3/Di raid controller, and all
> looks fine (I have a nice 100+ gig raid 5 array).
>
> I than boot the install, and it finds no drives. I'm assuming one of
> the following messages is the source of my problems.
>
> pci3: <unknown card> (vendor=0x9005, dev=0x00c5) at 4.0 irq 10
> pci2: <unknown card> (vendor=0x1028, dev=0x0002) at 2.1 irq 10
> pci1: <unknown card> (vendor-0x14e4, dev=0x1644) at 8.0 irq 10
>
> I was hoping this would just work out of the box. I'm hoping I can get
> this working. Any help would be greatly appreciated.
>
> It does see the onboard Adaptec aic7899 controller, just not the raid
> controller.
I just bought one also with RedHat Linux 7.0 factory installed and the Perc
3/Di configured as a 2 disk mirror. 4.3-RELEASE didn't see the aac device
until I patched /usr/src/sys/dev/aac/aac_pci.c as shown below. I got the
info from the Linux aacraid driver. To actually install I had to fix up a
new kernel on the kern.flp diskette and put a different kernel.GENERIC in
the bin.* distribution (maybe there's an easier way).
However, I didn't get the afacli utility working correctly...
--- aac_pci.c.orig Mon Jan 8 20:03:09 2001
+++ aac_pci.c Mon Apr 23 13:48:46 2001
@@ -90,6 +90,10 @@
{0x1028, 0x0001, 0x1028, 0x0001, AAC_HWIF_I960RX, "Dell PERC 2/Si"},
{0x1028, 0x0002, 0x1028, 0x0002, AAC_HWIF_I960RX, "Dell PERC 3/Di"},
{0x1028, 0x0003, 0x1028, 0x0003, AAC_HWIF_I960RX, "Dell PERC 3/Si"},
+ {0x1028, 0x0004, 0x1028, 0x00d0, AAC_HWIF_I960RX, "Dell PERC 3/Si"},
+ {0x1028, 0x0002, 0x1028, 0x00d1, AAC_HWIF_I960RX, "Dell PERC 3/Di"},
+ {0x1028, 0x0002, 0x1028, 0x00d9, AAC_HWIF_I960RX, "Dell PERC 3/Di"},
+ {0x1028, 0x0008, 0x1028, 0x00cf, AAC_HWIF_I960RX, "Dell PERC 3/Di"},
{0x9005, 0x0282, 0x9005, 0x0282, AAC_HWIF_I960RX, "Adaptec
AAC-2622"},
{0x1011, 0x0046, 0x9005, 0x0364, AAC_HWIF_STRONGARM, "Adaptec
AAC-364"},
{0x1011, 0x0046, 0x9005, 0x0365, AAC_HWIF_STRONGARM, "Adaptec
AAC-3642"},
--
Marty Moll
martym@arbor.edu
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?000801c0cded$7a8d55c0$256afea9>
