*BSD News Article 66822


Return to BSD News archive

Path: euryale.cc.adfa.oz.au!newshost.anu.edu.au!harbinger.cc.monash.edu.au!news.rmit.EDU.AU!news.unimelb.EDU.AU!munnari.OZ.AU!news.hawaii.edu!ames!usenet.kornet.nm.kr!usenet.etri.re.kr!news.kreonet.re.kr!usenet.seri.re.kr!news.cais.net!nntp.uio.no!nntp.uib.no!nntp-bergen.UNINETT.no!nntp-trd.UNINETT.no!sthaug
From: sthaug@nethelp.no (Steinar Haug)
Newsgroups: comp.unix.bsd.freebsd.misc
Subject: Re: Multiport Ethernet
Date: 26 Apr 1996 06:50:08 GMT
Organization: Nethelp Consulting, Trondheim, Norway
Lines: 32
Distribution: world
Message-ID: <4lprn1$8d2@verdi.nethelp.no>
References: <ABw9tGrG_0@qsar.chem.msu.su> <4lponf$8b5@verdi.nethelp.no>
NNTP-Posting-Host: trane.uninett.no
In-reply-to: sthaug@nethelp.no's message of 26 Apr 1996 05:59:11 GMT

[Steinar Haug]

|   I have configured a machine which uses one SMC Etherpower2 card and one
|   ZNYX 314 card. The ZNYX is 4 10baseT ports, for a total of 6 10baseT ports
|   in 2 PCI slots. Works great with the standard if_de driver - many thanks
|   to Matt Thomas!

A slight followup to my own posting: The ZNYX card needs one small patch to
be recognized by the driver, and this patch is not in the newest (960323)
SNAP.

Steinar Haug, Nethelp consulting, sthaug@nethelp.no
----------------------------------------------------------------------
*** if_de.c.orig	Sat Mar 23 22:02:43 1996
--- if_de.c	Mon Mar 25 18:23:41 1996
***************
*** 1671,1677 ****
  	 * of the rom and let the rest be all 0xffs.  (Can we say
  	 * ZNYX???)
  	 */
! 	for (idx = 6; idx < 32; idx++) {
  	    if (sc->tulip_rombuf[idx] != 0xFF)
  		return -4;
  	}
--- 1671,1677 ----
  	 * of the rom and let the rest be all 0xffs.  (Can we say
  	 * ZNYX???)
  	 */
! 	for (idx = 8; idx < 32; idx++) {
  	    if (sc->tulip_rombuf[idx] != 0xFF)
  		return -4;
  	}