From owner-freebsd-current Tue Feb 27 21:21:13 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id VAA12749 for current-outgoing; Tue, 27 Feb 1996 21:21:13 -0800 (PST) Received: from who.cdrom.com (who.cdrom.com [192.216.222.3]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id VAA12744 for ; Tue, 27 Feb 1996 21:21:12 -0800 (PST) Received: from greatdane.cisco.com (greatdane.cisco.com [171.69.1.141]) by who.cdrom.com (8.6.12/8.6.11) with ESMTP id VAA22050 for ; Tue, 27 Feb 1996 21:21:11 -0800 Received: from cisco.com (localhost.cisco.com [127.0.0.1]) by greatdane.cisco.com (8.6.8+c/8.6.5) with ESMTP id VAA02320; Tue, 27 Feb 1996 21:16:49 -0800 Message-Id: <199602280516.VAA02320@greatdane.cisco.com> To: jkh@time.cdrom.com ("Jordan K. Hubbard") Cc: current@freebsd.org, bcole@cisco.com Subject: Re: 2.2-960226-SNAP now on ftp.freebsd.org - 3c509 problem In-Reply-To: Your message of "Tue, 27 Feb 1996 21:09:51 PST." <199602280509.VAA11819@bcole-ss20.cisco.com> Date: Tue, 27 Feb 1996 21:16:49 -0800 From: Bruce Cole Sender: owner-current@freebsd.org Precedence: bulk First problem: My 3c509 card did not come up in UTP mode as it should have. It interrupted with: 1 3C5x9 board(s) on ISA found at 0x300 ep0 at 0x300-0x30f irq 10 on isa ep0: irq 10 ep0: aui/utp[*UTP*] address 00:60:8c:b8:77:84 but then went on to report: ep0: strange connector type in EEPROM: assuming AUI and failed to pass traffic over its UTP connection. I fixed this with: *** if_ep.c.orig Sun Feb 25 17:05:34 1996 --- if_ep.c Tue Feb 27 21:08:29 1996 *************** *** 655,661 **** GO_WINDOW(1); } else { GO_WINDOW(1); ! switch(sc->ep_connector) { case ACF_CONNECTOR_UTP: if(sc->ep_connectors & UTP) { GO_WINDOW(4); --- 655,661 ---- GO_WINDOW(1); } else { GO_WINDOW(1); ! switch(sc->ep_connector >> ACF_CONNECTOR_BITS) { case ACF_CONNECTOR_UTP: if(sc->ep_connectors & UTP) { GO_WINDOW(4);