Code:
[ 13.938268] brcm80211 0000:06:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 13.938276] brcm80211 0000:06:00.0: setting latency timer to 64
[ 13.963989] brcm80211: fail to load firmware brcm/bcm43xx-0.fw
[ 13.963993] brcm80211: Failed to find firmware usually in /lib/firmware/brcm
[ 13.964046] brcm80211 0000:06:00.0: PCI INT A disabled
[ 13.964060] brcm80211: wl_pci_probe: wl_attach failed!
Here is the key piece. The firmware is not there yet. To get and install the firmware:
Code:
cd
git clone git://git.kernel.org/pub/scm/linux/kernel/git/dwmw2/linux-firmware.git
cd linux-firmware
sudo cp -a brcm /lib/firmware
cd /lib/firmware/brcm
sudo ln -s bcm43xx-0-610-809-0.fw bcm43xx-0.fw
sudo ln -s bcm43xx_hdr-0-610-809-0.fw bcm43xx_hdr-0.fw
Then we will remove the module and reload it:
Code:
sudo rmmod brcm80211
sudo insmod /lib/modules/`uname -r`/brcm80211.ko
Hopefully that will get it this time.