From owner-freebsd-mobile@FreeBSD.ORG Mon Oct 6 18:46:43 2003 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 296DA16A4B3 for ; Mon, 6 Oct 2003 18:46:43 -0700 (PDT) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4D5F43FDD for ; Mon, 6 Oct 2003 18:46:42 -0700 (PDT) (envelope-from shadowcrest@comcast.net) Received: from jupiter (c-24-126-185-44.we.client2.attbi.com[24.126.185.44]) by comcast.net (rwcrmhc12) with SMTP id <20031007014642014006bl62e>; Tue, 7 Oct 2003 01:46:42 +0000 From: "Keith Davis" To: Date: Mon, 6 Oct 2003 18:46:35 -0700 Message-ID: <000b01c38c74$d7aa67f0$6401a8c0@jupiter> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Subject: Xircom Wireless Ethernet CWE1130 X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2003 01:46:43 -0000 Hello all, I am running FreeBSD 5.1 - CURRENT. I just purchased a Xircom CWE1130-NA card ( which is a repackaged Cisco Aironet 340 card ) and plugged in into the machine and got the following: -- NOTE: Can we get this committed? -- pccard0 < unrecognized card > vendor=0x.. After poking around a while on the Internet I found a fix and thought I'd share it with the rest of you. cd sys/dev/pccard pccarddevs file: /* Xircom Products */ + product XIRCOM CWE1130 0x0007 Xircom Wireless Ethernet Adapter product XIRCOM CE 0x0100 Xircom Credit Card Ethernet . cd /sys/dev/an if_an_pccard.c file: static const struct pccard_product an_pccard_products[] = { PCMCIA_CARD(AIRONET, PC4800, 0), PCMCIA_CARD(AIRONET, PC4500, 0), PCMCIA_CARD(AIRONET, 350, 0), + PCMCIA_CARD(XIRCOM, CWE1130, 0), { NULL } }; and rebuild your kernel. Keith Davis