Re: freebsd-stable Digest, Vol 84, Issue 3
From: Gilles Bruno (Gilles.Bruno_at_ujf-grenoble.fr)
Date: 10/27/04
- Previous message: Samuel Trommel: "RE: ppp -nat broken???"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Wed, 27 Oct 2004 18:21:46 +0200 To: Gareth Hopkins <gareth@uunet.co.za>
Hi Gareth,
we are currently working on it in order to make FreeBSD 4.10-STABLE
recognize our PowerEdge 1850 Perc 4e/SI (not a PCI-Express one !!)
Next week we'll also test a Perc 4/DC on it
Basically, you just have to add it's pci signature to the amr driver.
The following patch applies to amr_pci.c (cvsup'ed)
It has not been thouroughtly tested so use it at your own risk - but so
far it has not made any glitches to us
--- 4.10-rel/amr_pci.c Wed Oct 27 18:15:12 2004
+++ amr_pci.c Wed Oct 27 18:15:12 2004
@@ -128,6 +128,7 @@
{0x1000, 0x1960, PROBE_SIGNATURE},
{0x1000, 0x0407, 0},
{0x1028, 0x000e, PROBE_SIGNATURE}, /* perc4/di i960 */
+ {0x1028, 0x0013, 0}, /* perc4e/Si */
{0x1028, 0x000f, 0}, /* perc4/di Verde*/
{0, 0, 0}
};
@@ -180,7 +181,8 @@
*/
command = pci_read_config(dev, PCIR_COMMAND, 1);
if ((pci_get_device(dev) == 0x1960) || (pci_get_device(dev) ==
0x0407) ||
- (pci_get_device(dev) == 0x000e) || (pci_get_device(dev) ==
0x000f)) {
+ (pci_get_device(dev) == 0x000e) || (pci_get_device(dev) ==
0x000f) ||
+ (pci_get_device(dev) == 0x0013)) {
/*
* Make sure we are going to be able to talk to this board.
*/
Regards,
>
> Message: 8
> Date: Tue, 26 Oct 2004 16:51:28 +0200 (South Africa Standard Time)
> From: Gareth Hopkins <gareth@uunet.co.za>
> Subject: Future support for PERC 4e/XX cards
> To: freebsd-stable@freebsd.org
> Message-ID:
> <Pine.WNT.4.61.0410261648540.760@LAP-GARETHH.staff.uunet.co.za>
> Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed
>
> Howdie,
>
> Was wondering if the following cards would be supported in the
> near future by BSD 4.10.
>
> PERC 4e/Si and PERC 4e/Di. These are from the new Dell poweredge 1850 and
> 2850 servers.
>
> ---
> Gareth Hopkins
> System Operations
> UUNET ZA
>
-- Gilles BRUNO System Admin. Universite Joseph Fourier - CRIP _______________________________________________ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org"
- Previous message: Samuel Trommel: "RE: ppp -nat broken???"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|
|