From owner-freebsd-questions@FreeBSD.ORG Sun Apr 9 06:12:10 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 CC03616A400 for ; Sun, 9 Apr 2006 06:12:10 +0000 (UTC) (envelope-from hernan.silberman@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B7F743D4C for ; Sun, 9 Apr 2006 06:12:10 +0000 (GMT) (envelope-from hernan.silberman@gmail.com) Received: by xproxy.gmail.com with SMTP id s9so480158wxc for ; Sat, 08 Apr 2006 23:12:09 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=nEjKWwvuh8/p40o6CBQIW5OSMapcOjFcD6jte5vpwWW5zZ76nW872hhukjetnE2tF1GRmSVXf9piwRAOQqFHU4CABSKEQcNPDBpIENahv6wMlordGPZliFePAIbEk7CFZAL+F1c6FWH59usX4whx4OLAPHPqIL1I5471snVSYE0= Received: by 10.70.122.2 with SMTP id u2mr393189wxc; Sat, 08 Apr 2006 23:12:09 -0700 (PDT) Received: by 10.70.53.1 with HTTP; Sat, 8 Apr 2006 23:12:09 -0700 (PDT) Message-ID: <9b9d376a0604082312xa9e7a2fnd6694d227819e2eb@mail.gmail.com> Date: Sat, 8 Apr 2006 23:12:09 -0700 From: hernan To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: [freebsd-questions] ndis setup 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: Sun, 09 Apr 2006 06:12:10 -0000 Hey folks. I'm setting up FreeBSD 6.0-RELEASE and I'm having a little trouble getting my wireless NIC recognized. The card is a Linksys WMP64G and I'm trying to set things up to run with the FreeBSD NDISulator as described in the FreeBSD handbook (http://www.freebsd.org/doc/handbook/network-wireless.html). Here's what I'm doing (as root): 1) Verifying with 'pciconf -lv' that the PCI card is there. Also, I know the card works, it was running fine on Windows. 2) Building ndis itself: cd /usr/src/sys/modules/ndis make clean make && make install 3) Building the if_ndis module: cd /usr/src/sys/modules/if_ndis cp /path_to_drivers_on_cd/Rt61.INF . cp /path_to_drivers_on_cd/rt61.sys . ndiscvt -i Rt61.INF -s rt61.sys -o ndis_driver_data.h make && make install 4) Loading the ndis and if_ndis modules: kldload ndis I verify at this point using kldstat that both ndis and if_ndis are in fact loaded. I see nothing in dmesg or in my console during the kldload. Also, it doesn't appear that the driver found the card, there's no signs of life. I've tried using ndisgen, and have had the same results (with much less typing). In either case, I get nothing in dmesg and no usable enabled NIC. I'm sure I'm doing something wrong, let me know if you see it. thanks in advance. Hernan