From owner-freebsd-questions Tue Dec 17 07:20:08 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id HAA28624 for questions-outgoing; Tue, 17 Dec 1996 07:20:08 -0800 (PST) Received: from root.com (implode.root.com [198.145.90.17]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id HAA28618 for ; Tue, 17 Dec 1996 07:20:06 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by root.com (8.7.6/8.6.5) with SMTP id HAA07996; Tue, 17 Dec 1996 07:19:50 -0800 (PST) Message-Id: <199612171519.HAA07996@root.com> X-Authentication-Warning: implode.root.com: Host localhost [127.0.0.1] didn't use HELO protocol To: Bradley Dunn cc: freebsd-questions@freebsd.org Subject: Re: SMC EtherPower 10/100 (SMC9332BDT) In-reply-to: Your message of "Tue, 17 Dec 1996 10:04:12 EST." From: David Greenman Reply-To: dg@root.com Date: Tue, 17 Dec 1996 07:19:50 -0800 Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >On Mon, 16 Dec 1996, David Greenman wrote: > >> >On Sun, 15 Dec 1996, David Greenman wrote: >> > >> >> Apply the following patch and add options "DE_HACK" into your kernel config >> >> file. Let me know if it works. >> > >> >Did not work. Patch applied clean, kernel compiled fine with DE_HACK, >> >probed correctly on boot, then de0: enabling BNC/AUI port. Arg. >> >> If it said "enabling BNC/AUI", then it didn't probe correctly since that >> should only show up on 21040 (10Mbps only) based cards. In any case, you >> should also (in addition to the patch) try the "link2" flag to ifconfig. > >Here is how it probes: >de0 rev 32 int a irq 11 on pci0:10 >de0: SMC 8432BA DC21140A [10-100Mb/s] pass 2.0 >de0: address 00:00:c0:fa:2c:f8 >de0: enabling BNC/AUI port Blurch. Okay, look for this assignment: if (sc->tulip_chipid == TULIP_21140) { sc->tulip_boardsw = &tulip_21140_smc9332_boardsw; return; } ...and change it to use the generic one: ... sc->tulip_boardsw = &tulip_dc21140_generic_boardsw; ... If that doesn't work, well, sorry...I'm all out of hacks for now. -DG David Greenman Core-team/Principal Architect, The FreeBSD Project