0

I have a Broadcom Corporation BCM43142 802.11b/g/n [14e4:4365] (rev 01) and unless I run rmmod b43 ; sudo rmmod bcma ; sudo rmmod wl ; sudo modprobe wl after restart, the wireless device isn't available in network devices. Is there a way of making it work without having to modprobe the device issues?

1 Answers1

1

I believe /etc/rc.local is not the efficient way to do this. I suggest, from a terminal:

sudo -i
echo "blacklist b43"  >>  /etc/modprobe.d/blacklist.conf
echo "blacklist bcma"  >>  /etc/modprobe.d/blacklist.conf
echo wl  >>  /etc/modules
exit

Reboot and you should be all set.

chili555
  • 61,330