I have been using Ubuntu on a Thinkpad for a while, and while upgrading kernels in Bionic Beaver, the drivers seems not to be working anymore: I have tried every drivers available (br-4, brcm-brfmac, linux-headers etc...) and I can't find the problem. I'm not a tech genius but I have followed every detail (except for the card, which is unregistered) to solve this issue detailed here... Installing Broadcom Wireless Drivers
$ uname -a
Linux tachikoma 4.15.0-51-generic #55-Ubuntu SMP Wed May 15 14:27:21 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
$ sudo lshw -c network
/proc/cpuinfo
*-network UNCLAIMED
description: Network controller
product: BCM4356 802.11ac Wireless Network Adapter
vendor: Broadcom Inc. and subsidiaries
physical id: 0
bus info: pci@0000:02:00.0
version: 02
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: latency=0
resources: memory:e1400000-e1407fff memory:e1000000-e13fffff
*-network
description: Ethernet interface
product: Ethernet Connection I219-V
vendor: Intel Corporation
physical id: 1f.6
bus info: pci@0000:00:1f.6
logical name: enp0s31f6
version: 21
serial: fc:45:96:20:cc:7d
size: 1Gbit/s
capacity: 1Gbit/s
width: 32 bits
clock: 33MHz
capabilities: pm msi bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=e1000e driverversion=3.2.6-k duplex=full firmware=0.13-4 ip=192.168.1.16 latency=0 link=yes multicast=yes port=twisted pair speed=1Gbit/s
resources: irq:122 memory:e2a00000-e2a1ffff
$ lspci -nn -d 14e4:
02:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM4356 802.11ac Wireless Network Adapter [14e4:43ec] (rev 02)
$ dmesg | grep wl ##(no response)
$ rfkill list all
0: tpacpi_bluetooth_sw: Bluetooth
Soft blocked: yes
Hard blocked: no
1: tpacpi_wwan_sw: Wireless WAN
Soft blocked: no
Hard blocked: no
~$ sudo modprobe wl && dmesg | grep wl
[sudo] password for tachikoma:
[ 3.507892] wl: loading out-of-tree module taints kernel.
[ 3.507895] wl: module license 'MIXED/Proprietary' taints kernel.
[ 3.509474] wl: module verification failed: signature and/or required key missing - tainting kernel
[ 3.511283] wl 0000:02:00.0: enabling device (0000 -> 0002)
[ 3.519271] wl driver 6.30.223.271 (r587334) failed with code 12
[ 3.519272] ERROR @wl_cfg80211_detach :
[ 3.519272] NULL ndev->ieee80211ptr, unable to deref wl
# wl module from Broadcom conflicts with the following modules:
blacklist b43
blacklist b43legacy
blacklist b44
blacklist bcma
blacklist brcm80211
blacklist brcmsmac
blacklist ssb
tachikoma@tachikoma:~$ sudo modprobe -r wl
tachikoma@tachikoma:~$ sudo modprobe brcmfmac
tachikoma@tachikoma:~$ dmesg | grep brcm
[ 3.617284] bluetooth hci0: Direct firmware load for brcm/BCM4354A2-0a5c-640e.hcd failed with error -2
[ 3.617287] Bluetooth: hci0: BCM: Patch brcm/BCM4354A2-0a5c-640e.hcd not found
[26492.789782] usbcore: registered new interface driver brcmfmac
[26492.897283] brcmfmac: brcmf_fw_map_chip_to_name: using brcm/brcmfmac4356-pcie.bin for chip 0x004356(17238) rev 0x000002
[26492.903037] brcmfmac 0000:02:00.0: Direct firmware load for brcm/brcmfmac4356-pcie.txt failed with error -2
[26493.342395] brcmfmac 0000:02:00.0: Direct firmware load for brcm/brcmfmac4356-pcie.clm_blob failed with error -2
[26493.342409] brcmfmac: brcmf_c_process_clm_blob: no clm_blob available(err=-2), device may have limited channels available
[26493.343549] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: Oct 22 2015 06:16:41 version 7.35.180.119 (r594535) FWID 01-1a5c4016
[26493.433356] brcmfmac 0000:02:00.0 wlp2s0: renamed from wlan0
So far I have tried the following kernels: b43, brcmfac, bcmwl-kernel-source.
Please let me know if you have any idea on how to diagnose the problem or repair it?
sudo apt install bcmwl-kernel-source
and reboot. – chili555 Jun 11 '19 at 13:03dmesg | grep wl
and also:rfkill list all
– chili555 Jun 13 '19 at 16:50$ rfkill list all 0: tpacpi_bluetooth_sw: Bluetooth Soft blocked: yes Hard blocked: no 1: tpacpi_wwan_sw: Wireless WAN Soft blocked: no Hard blocked: no
– Jean Bouchart Jun 15 '19 at 20:24sudo modprobe wl && dmesg | grep wl
– chili555 Jun 15 '19 at 21:09sudo modprobe -r wl
and load brcmfmac:sudo modprobe brcmfmac
Then check the message log; it probably wants missing firmware:dmesg | grep brcm
I suggest that you post the result here and give us the link: http://paste.ubuntu.com – chili555 Jun 17 '19 at 21:15sudo apt purge bcmwl-kernel-source
– chili555 Jun 18 '19 at 21:30