[PC-BSD] Broadcom wireless on Dell doesn't turn on.

Hi folks,

Just started using Unix-type OS few days ago and now I have one problem. I can't get wireless device turning on (led is switched off) even though it's working on Windows. OS installed is PCBSD 8.1 so there should be no difference compared to FreeBSD. I have some kind of Dell mini wireless card (it must be Broadcom). Please tell me how to get more accurate information in terminal and I'll provide you with it if you need. For reference I used some parts of FreeBSD handbook.

Here's what I tried:
* Added if_bwn_load="YES" to /boot/loader.conf.
* Did "make install clean" inside /usr/ports/net/bwn-firmware-kmod directory
* reboot
* ifconfig wlan0 create wlandev bwn0
* ifconfig wlan0 up scan

Tried also bwi instead of bwn with no success.

What should I do to make my wireless work?
 
richardpl said:
Add bwn firmware to loader.conf

I did it now I guess. Added
Code:
bwn_v4_ucode_load="YES"
to /boot/loader.conf.
Tried also manual load of module after reboot kldload bwn_v4_ucode and got message:
Code:
kldload: can't load bwn_v4_ucode: File exists
Which should mean that module is really loaded. Wifi is still not working, led turned off.
 
richardpl said:
Is there hardware switch somewhere?

Anythin displayed in dmesg(8)
Thanks for mentioning this useful command. I see some interesting lines now:
Code:
need multicast update callback
need multicast update callback
bwn_v4_lp_ucode15: could not load firmware image, error 2
bwn-open_v4_lp_ucode15: could not load firmware image, error 2
But there is also line in /boot/loader.conf which should load these firmware images:
Code:
if_bwn_load="YES"
bwn_v4_ucode_load="YES"

I will try http://forums.freebsd.org/showpost.php?p=113500&postcount=227 solution but it seems like a silly workaround.

joag said:
FreeBSD-8 changed things slightly, but here http://www.freebsd.org/doc/handbook/network-wireless.html is all the info you need, reading this section in the handbook and with the example in my site I think you should be able to have this wireless card working.
Yes, thanks I already read first sections which are more firmware/driver related.


By the way, I switched to FreeBSD 8.1 x86.
 
I now switched to Ndisulator and configured system using this guide: http://www.freebsd.org/doc/handbook/config-network-setup.html.
When I load wireless module manually all works fine but when it's started automatically at boot adding line
Code:
bcmwl5_sys_load="YES"
to /boot/loader.conf system crashes showing page fault and offers only to restart. I had to use FreeBSD installation disk to fix system modifying loader.conf. Is there any way to start module automatically?
Also wireless hardware led is disabled but [CMD="dhclient"]wlan0[/CMD] works just fine when loading module manually.
 
I'm loading module via loader.conf because I want it to load automatically at startup and that's what is said if you follow that link I posted before:
You can configure the system to load the NDIS modules at boot time in the same way as with any other module. First, copy the generated module, W32DRIVER_SYS.ko, to the /boot/modules directory. Then, add the following line to /boot/loader.conf:
Why shouldn't I follow handbook? Could be I understood incorrectly what was written in it...

How do I unload module otherwise? I couldn't access commandline before that restart. Was there any secret key combination?
 
Information in handbook was never correct. You was very lucky if you ever got ndis modules to not crash during boot.

Nothing is really secret. From loader prompt/bootloader menu you type unload, this will unload all modules
now you just type boot command and/or load modules you really want via load command.
This and the others is explained in various manual pages.

You can load modules after boot via rc.local and many other options...
 
Tried older Broadcom driver and it loaded successfully at startup. One more thing is left. Interface is not getting ip by DHCP automatically at startup. I have to type manually:[CMD="dhclient"]wlan0[/CMD]
That's only command necessary and wireless is working.
Wireless entries in /etc/rc.conf:
Code:
wlans_ndis0="wlan0"
ifconfig_wlan0="WPA DHCP"
 
Back
Top