web-dev-qa-db-fra.com

Bluetooth: impossible de charger le firmware, peut ne pas fonctionner correctement -ubuntu -12.04

Ubuntu 12.04 Bluetooth ne recherche pas un appareil

dmesg | grep Blue  
[   11.005902] Bluetooth: Core ver 2.17
[   11.005919] Bluetooth: HCI device and connection manager initialized
[   11.005978] Bluetooth: HCI socket layer initialized
[   11.006323] Bluetooth: L2CAP socket layer initialized
[   11.006328] Bluetooth: SCO socket layer initialized
[   11.387477] Bluetooth: can't load firmware, may not work correctly
[   13.394719] Bluetooth: hci0 command 0x1003 tx timeout
[   18.867503] Bluetooth: RFCOMM TTY layer initialized
[   18.867515] Bluetooth: RFCOMM socket layer initialized
[   18.867521] Bluetooth: RFCOMM ver 1.11
[   19.461578] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   19.461582] Bluetooth: BNEP filters: protocol multicast
[   19.461593] Bluetooth: BNEP socket layer initialized

avec lsusb

lsusb
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0a5c:21d7 Broadcom Corp. 
Bus 001 Device 004: ID 0c45:6473 Microdia 
1
RahulG

Cela obtiendra votre firmware

wget https://www.dropbox.com/s/9ryy3ir1tby6wrf/fw-0a5c_21d7.hcd
Sudo cp fw-0a5c_21d7.hcd /lib/firmware/
Sudo cp fw-0a5c_21d7.hcd /lib/firmware/brcm/
Sudo cp fw-0a5c_21d7.hcd /lib/firmware/brcm/BCM43142A0-0a5c-21d7.hcd

Et puis on recharge le module btusb

Sudo modprobe -r btusb
Sudo modprobe btusb

Et maintenant, vérifiez dmesg pour voir si le firmware est chargé ou a des erreurs

dmesg | tail

Cela peut montrer une autre erreur de chargement du firmware si votre noyau attend un nom de fichier différent

3
Jeremy31