From owner-freebsd-net@FreeBSD.ORG Mon Oct 25 09:56:24 2010 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DBD57106564A; Mon, 25 Oct 2010 09:56:24 +0000 (UTC) (envelope-from bschmidt@techwires.net) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 4B69B8FC19; Mon, 25 Oct 2010 09:56:23 +0000 (UTC) Received: by fxm17 with SMTP id 17so2727429fxm.13 for ; Mon, 25 Oct 2010 02:56:23 -0700 (PDT) Received: by 10.103.212.2 with SMTP id o2mr7917222muq.136.1287998988948; Mon, 25 Oct 2010 02:29:48 -0700 (PDT) Received: from jessie.localnet (p5B0E216B.dip0.t-ipconnect.de [91.14.33.107]) by mx.google.com with ESMTPS id r22sm2744372fax.45.2010.10.25.02.29.46 (version=SSLv3 cipher=RC4-MD5); Mon, 25 Oct 2010 02:29:46 -0700 (PDT) Sender: Bernhard Schmidt From: Bernhard Schmidt To: Matthias Apitz Date: Mon, 25 Oct 2010 11:29:43 +0200 User-Agent: KMail/1.13.2 (Linux/2.6.32-25-generic; KDE/4.4.2; i686; ; ) References: <20101024052559.GA1971@current.Sisis.de> In-Reply-To: <20101024052559.GA1971@current.Sisis.de> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_I4UxMQlRq0osoBA" Message-Id: <201010251129.44262.bschmidt@freebsd.org> Cc: freebsd-net@freebsd.org, freebsd-hackers@freebsd.org Subject: Re: Broadcom BCM4310 / bwi(4) and interface bwi0 is not showing up X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bschmidt@freebsd.org List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Oct 2010 09:56:25 -0000 --Boundary-00=_I4UxMQlRq0osoBA Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit On Sunday, October 24, 2010 07:25:59 Matthias Apitz wrote: > Hello, > > I have a new laptop Acer Aspire One D250 and I want to install a > 8-CURRENT as of CVS from May 2009 (as I use this on all my laptops). > The laptop comes with as Wifi chip: > > none2@pci0:1:0:0: class=0x028000 card=0xe01b105b chip=0x431514e4 > rev=0x01 hdr=0x00 > vendor = 'Broadcom Corporation' > device = 'BCM4310 USB Controller' > class = network > > I learned after searching around that it should be supported by bwi(4) > and one should install the firmware kmod from the ports. I have in > loader.conf: > [..] Please try attached patch, I'm not sure if it is that simple.. worth a try though. -- Bernhard --Boundary-00=_I4UxMQlRq0osoBA Content-Type: text/x-patch; charset="UTF-8"; name="bwi_4315.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="bwi_4315.diff" --- a/sys/dev/bwi/if_bwi_pci.c +++ b/sys/dev/bwi/if_bwi_pci.c @@ -85,6 +85,7 @@ static const struct bwi_dev { { PCI_VENDOR_BROADCOM, 0x4311,"Broadcom BCM4311 802.11b/g Wireless Lan" }, { PCI_VENDOR_BROADCOM, 0x4312,"Broadcom BCM4312 802.11a/b/g Wireless Lan" }, { PCI_VENDOR_BROADCOM, 0x4313,"Broadcom BCM4312 802.11a Wireless Lan" }, + { PCI_VENDOR_BROADCOM, 0x4315,"Broadcom BCM4312 802.11b/g Wireless Lan"}, { PCI_VENDOR_BROADCOM, 0x4320,"Broadcom BCM4306 802.11b/g Wireless Lan"}, { PCI_VENDOR_BROADCOM, 0x4321,"Broadcom BCM4306 802.11a Wireless Lan"}, { PCI_VENDOR_BROADCOM, 0x4325,"Broadcom BCM4306 802.11b/g Wireless Lan"}, --Boundary-00=_I4UxMQlRq0osoBA--