From owner-freebsd-mobile@FreeBSD.ORG Tue Apr 8 07:09:55 2008 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD2511065670 for ; Tue, 8 Apr 2008 07:09:55 +0000 (UTC) (envelope-from andrey.kosachenko@gmail.com) Received: from fk-out-0910.google.com (fk-out-0910.google.com [209.85.128.187]) by mx1.freebsd.org (Postfix) with ESMTP id 2CA478FC1E for ; Tue, 8 Apr 2008 07:09:54 +0000 (UTC) (envelope-from andrey.kosachenko@gmail.com) Received: by fk-out-0910.google.com with SMTP id b27so2933332fka.11 for ; Tue, 08 Apr 2008 00:09:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding:from; bh=/9N2+TArwu911L69OSIPjnW97iSgGhc/4mKtwr1JUtI=; b=NQFE3DsFfGOL/NC95bX+ueEut76eulBd2NOYtMKR64bh+My4AbV0roy4TYBSjLnhfo4SefemwWYEGQtMhASW0F04ZHccqakFJcurUXr/3gB+YyQpuUJsIMDfbCYM5zoNynwteMhOA49O3GveS/jGXzGTdCpdnTI4OHC8qPh4S5g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding:from; b=rF/x5akXTm7lDcMSh467jy+wKoQIKdLaZ4o+gwt7YIrYTR0FoeiiBZ672a+g1ViMLbM6fKT/1oHTVUH2M/jPkGzadDNkVfhIQ1k3ol6KJc6cLcMhCQkusSyj9puDxKAeqz6BT1dZlPAk6n2woG/3dywt+/P2aSUtDAygobtpzHs= Received: by 10.78.149.8 with SMTP id w8mr737356hud.22.1207638593447; Tue, 08 Apr 2008 00:09:53 -0700 (PDT) Received: from beastie.lan ( [194.9.14.78]) by mx.google.com with ESMTPS id g1sm36078721muf.5.2008.04.08.00.09.50 (version=SSLv3 cipher=RC4-MD5); Tue, 08 Apr 2008 00:09:51 -0700 (PDT) Message-ID: <47FB1A36.3000903@gmail.com> Date: Tue, 08 Apr 2008 10:09:42 +0300 User-Agent: Thunderbird 2.0.0.12 (X11/20080302) MIME-Version: 1.0 To: freebsd-mobile@freebsd.org References: <303421.62411.qm@web43132.mail.sp1.yahoo.com> In-Reply-To: <303421.62411.qm@web43132.mail.sp1.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit From: Andrey Cc: Pippo Pippone Subject: Re: Wireless on hp 6710b X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Apr 2008 07:09:55 -0000 Hi, besideinfo! It sounds like you've not loaded properly all the required modules. Make sure that everything you encountered in /boot/loader.conf is actually loaded (on this purpose use kldstat for example. NOTE I cut off unnecessary output below): # kldstat Id Refs Address Size Name .... 4 1 0xc08f8000 ebc4 if_wpi.ko 5 9 0xc0907000 2bfc0 wlan.ko 6 3 0xc0933000 30a8 firmware.ko 7 2 0xc0937000 1dc8 wlan_amrr.ko 8 1 0xc0939000 25f50 wpifw.ko 9 1 0xc095f000 1b3c wlan_xauth.ko 10 1 0xc0961000 2e2c wlan_wep.ko 11 1 0xc0964000 6ec4 wlan_ccmp.ko 12 1 0xc096b000 417c wlan_tkip.ko 13 1 0xc0970000 51dc wlan_scan_sta.ko 14 1 0xc0976000 1924 wlan_scan_ap.ko ..... Also make sure if license acknowledge variable is set (use kenv on this purpose): # kenv | grep 'wpi' legal.intel_wpi.license_ack="1" After all you should obtain smth. like this: # pciconf -lv | grep -B2 -A1 3945 wpi0@pci0:16:0:0: class=0x028000 card=0x135c103c chip=0x42228086 rev=0x02 hdr=0x00 vendor = 'Intel Corporation' device = '10418086 Intel 3945ABG Wireless LAN controller' class = network Also may it be you've already got support for wpi device in your kernel (as it is in ). So you don't need load modules you've in you kernel. But anyway firmware *must be* loaded before driver will work. According to documentation it is strict requirement. PS: Please, for further discussion make CC to freebsd-mobile@. It'll help to sort out your issue much faster. -- Sincerely, Andrey Kosachenko besideinfo wrote: > Hi Adrey, > I did as you suggest but steel the wireless doesn't > work. The strange thing is that on the dmesg there > isn't any information about the wireless. I believe > that wrong or correct I should see something from the > boot. If can help following there is my loader.conf > --------------- > sound_load="YES" > sound_ich_load="YES" > > if_wpi_load="YES" > wlan_load="YES" > wlan_amrr_load="YES" > firmware_load="YES" > legal.intel_wpi.license_ack=1 # this one is licence > related stuff > > wpifw_load="YES" > wlan_xauth_load="YES" > wlan_wep_load="YES" > wlan_ccmp_load="YES" > wlan_tkip_load="YES" > wlan_scan_sta_load="YES" > wlan_scan_ap_load="YES" > --------- > and this is part of my pciconf > > none3@pci16:0:0: class=0x028000 card=0x135c103c > chip=0x42228086 rev=0x02 hdr=0x00 > vendor = 'Intel Corporation' > device = '10418086 Intel 3945ABG Wireless LAN > controller' > class = network > bge0@pci24:0:0: class=0x020000 card=0x30c0103c > chip=0x169314e4 rev=0x02 hdr=0x00 > vendor = 'Broadcom Corporation' > device = 'BCM 5787A Ethernet Controller > Broadcom Netlink Gigabit' > class = network > subclass = ethernet > ----- > If you want i can sent you a copy of dmesg > > thanks > --- Andrey wrote: > >> Hi, Pippo Pippone! >> >> It seems you did things "literally" as they are >> described in handbook >> :o). Also you've not provided sufficient information >> concerned the >> wireless hardware you have. >> >> But still, you should use wpi instead of ath. >> Thus you need whether wpi in your kernel or you can >> load it as a kernel >> module. >> >> Actually (for quick start) you can try the >> configuration listed below: >> >> # less /boot/loader.conf >> if_wpi_load="YES" >> wlan_load="YES" >> wlan_amrr_load="YES" >> firmware_load="YES" >> legal.intel_wpi.license_ack=1 # this one is licence >> related stuff >> >> wpifw_load="YES" >> wlan_xauth_load="YES" >> wlan_wep_load="YES" >> wlan_ccmp_load="YES" >> wlan_tkip_load="YES" >> wlan_scan_sta_load="YES" >> wlan_scan_ap_load="YES" >> >> For more information take a look into man if_wpi. >> >> Also take into consideration that unfortunately >> if_wpi currently has >> limited abilities :(. >> For example Host AP and ad-hoc modes are not >> supported yet. >> >> > > > > ____________________________________________________________________________________ > You rock. That's why Blockbuster's offering you one month of Blockbuster Total Access, No Cost. > http://tc.deals.yahoo.com/tc/blockbuster/text5.com > >