From owner-freebsd-questions@FreeBSD.ORG Tue May 30 21:16:16 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F2E316A688 for ; Tue, 30 May 2006 21:16:16 +0000 (UTC) (envelope-from demonbob@systemoverload.net) Received: from mail14.opentransfer.com (mail14.opentransfer.com [69.6.255.184]) by mx1.FreeBSD.org (Postfix) with SMTP id 548E743D5D for ; Tue, 30 May 2006 21:16:12 +0000 (GMT) (envelope-from demonbob@systemoverload.net) Received: (qmail 29917 invoked by uid 399); 30 May 2006 21:16:10 -0000 Received: from unknown (HELO ?10.1.20.119?) (69.2.32.219) by mail.opentransfer.com with SMTP; 30 May 2006 21:16:10 -0000 Message-ID: <447CB61F.1030702@systemoverload.net> Date: Tue, 30 May 2006 16:16:15 -0500 From: Dustin Coates User-Agent: Thunderbird 1.5.0.2 (X11/20060510) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <000801c68312$4d2e5590$0201a8c0@AMD1700> <200605290912.49807.mark@msen.com> <447B67BD.8070905@infowest.com> In-Reply-To: <447B67BD.8070905@infowest.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: ndis problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 May 2006 21:16:20 -0000 Lorin Lund wrote: > I'm running 6.1-RELEASE i386. Generic kernel. > The wireless 'card' is a built-in Broadcom 802.11 b/g > My PC is a Compaq V2607CL Turion based notebook > > I downloaded a driver kit from HP. It created > c:\SWSetup\SP32158A\ > In that folder I found > bcmwl5.inf > bcmwl5.sys > bcmwl5npf.sys > and lots of other files. > > The .INF file was UNICODE. But as far as I can tell the only > special characters were in the > [strings] > section for various countries. I cut off all the other countries > leaving just US and > forced it to ASCII. > ndiscvt gave no error messages. > > The > make > make install > gave no error messages. > > I added an ndis linen to loader.conf to load the .ko > > dmesg shows no error messages. But it doesn't show ndis0: being > recognized either. > > When I manually try > kldload ndis > it says it is already loaded. > > When I try > ifconfig -a > there is no ndis: > When I try > ifconfig ndis0: > it says there is no interface. > > I don't know what else to try. Try using ndisgen to make the wrapper. ndisgen should create a bcwml5_sys.ko file in the directory, then you need to copy that file to /boot/kernel/ After that in your loader.conf add bcmwl5_sys_load="YES" along with the ndis_load="YES". I beleive that the old way of creating the ndis drivers is either broken, or being faded out for ndisgen. I have the same wireless cards and this is the way i did it. So it should work.