From owner-freebsd-arch@FreeBSD.ORG Sat Oct 29 03:48:47 2005 Return-Path: X-Original-To: freebsd-arch@FreeBSD.org Delivered-To: freebsd-arch@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FC4016A422 for ; Sat, 29 Oct 2005 03:48:47 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2E4E43D45 for ; Sat, 29 Oct 2005 03:48:46 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.3/8.13.3) with ESMTP id j9T3kstU066167; Fri, 28 Oct 2005 21:46:55 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 28 Oct 2005 21:46:58 -0600 (MDT) Message-Id: <20051028.214658.93207877.imp@bsdimp.com> To: newsletter@acsoftware.org From: "M. Warner Losh" In-Reply-To: <436277BB.2050308@acsoftware.org> References: <436277BB.2050308@acsoftware.org> 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 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Fri, 28 Oct 2005 21:46:55 -0600 (MDT) Cc: freebsd-arch@FreeBSD.org Subject: Re: Billionton LNA-100B pcmcia ethernet problems X-BeenThere: freebsd-arch@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussion related to FreeBSD architecture List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 03:48:47 -0000 In message: <436277BB.2050308@acsoftware.org> Newsletter writes: : hi! I have this Billionton LNA-100B pcmcia card, and freebsd seems able : to recongise it when i insert the card but when i do ifconfig -a, it : doesnt have that card in there and so, i dun hve any networking.... : : Here is the output when i insert the card... : : pccard0: mtu 1500 : lo0: flags=8049 mtu 16384 : inet 127.0.0.1 netmask 0xff000000 : inet6 :: 1 prefixlen 128 : inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2 : : : anyone know how can i configure this card?? btw, i am using freebsd 5.4 You need to have ed in your kernel. However, it would appear that this is a variation of this card that the FreeBSD kernel doesn't know about yet. Some versions of this card have a manufacturer id of 0x021b instead of 0xffff. I've added a new device ID to current for this. I'll see what I can do about back-porting it to 5.x, but I no longer have any 5.x laptops around for easy testing so that may take a while. To add support yourself, you'll need to add the following line to pccarddevs near the other billionton entries: product BILLIONTON LNA100B { "Billionton", "LNA-100B", NULL, NULL } Billionton LNA-100B And then add a line like the following to if_ed_pccard.c in the ed_card_products section: { PCMCIA_CARD(BILLIONTON, LNA100B, 0), NE2000DVF_AX88190}, near the other BIOLLIONTON lines. Rebuild, reinstall and try again. Warner