From owner-freebsd-current@FreeBSD.ORG Tue Apr 13 08:02:02 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72D0416A4CE for ; Tue, 13 Apr 2004 08:02:02 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11B3B43D46 for ; Tue, 13 Apr 2004 08:02:02 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.10/8.12.9) with ESMTP id i3DF21kj006451; Tue, 13 Apr 2004 09:02:01 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 13 Apr 2004 09:02:51 -0600 (MDT) Message-Id: <20040413.090251.08456849.imp@bsdimp.com> To: shizukakudo_99@yahoo.com From: "M. Warner Losh" In-Reply-To: <20040412201157.46385.qmail@web11407.mail.yahoo.com> References: <20040412201157.46385.qmail@web11407.mail.yahoo.com> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-current@freebsd.org Subject: Re: 3Com 3c905 failed to attach X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 15:02:02 -0000 You might try the following change: Index: if_xl.c =================================================================== RCS file: /cache/ncvs/src/sys/pci/if_xl.c,v retrieving revision 1.168 diff -u -r1.168 if_xl.c --- if_xl.c 20 Mar 2004 02:24:24 -0000 1.168 +++ if_xl.c 13 Apr 2004 15:00:39 -0000 @@ -1373,6 +1373,7 @@ sc->xl_flags |= XL_FLAG_PHYOK; switch (did) { + case TC_DEVICEID_BOOMERANG_10_100BT: /* 3c905-TX */ case TC_DEVICEID_HURRICANE_575A: case TC_DEVICEID_HURRICANE_575B: case TC_DEVICEID_HURRICANE_575C: but that might be too specific for your needs. I'll note that we should likely add an additional field to the table to load these flags from, but that's bigger fish than I wanna fry right now. Warner