Date: Fri, 11 Jul 1997 19:10:24 +0200 (MET DST) From: "W.G.T.J. Wanders" <wwanders@telebyte.nl> To: current@freebsd.org Subject: Diamond Fireport 40 on FreeBSD. Message-ID: <199707111710.TAA20550@monet.telebyte.nl>
next in thread | raw e-mail | index | archive | help
I recently installed a Diamond Fireport 40 Symbios/NCR 875
based UW SCSI controller in my PC at home and it has worked
very fine since under FreeBSD 2.2.[1,2]. Only a small change
in ncr.c was needed to get FreeBSD to see the card:
*** ncr.c- Sat Mar 1 06:23:33 1997
--- ncr.c Sun Jun 15 00:28:21 1997
***************
*** 1286,1291 ****
--- 1286,1292 ----
#define NCR_825_ID (0x00031000ul)
#define NCR_860_ID (0x00061000ul)
#define NCR_875_ID (0x000f1000ul)
+ #define DIAMOND_FIREPORT_40_ID (0x008f1000ul)
#ifdef __NetBSD__
***************
*** 3197,3202 ****
--- 3198,3206 ----
case NCR_875_ID:
return ("ncr 53c875 wide scsi");
+
+ case DIAMOND_FIREPORT_40_ID:
+ return("Diamond FirePort 40");
}
return (NULL);
}
I guess the Diamond Fireport 20 should also work with
similar change.
Greetings,
William Wanders <william@acm.org>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199707111710.TAA20550>
