web-dev-qa-db-ja.com

Bluetooth:ファームウェアをロードできません、正しく動作しない可能性があります-ubuntu -12.04

Ubuntu 12.04 Bluetoothはデバイスを検索していません

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

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

これでファームウェアが取得されます

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

そして、btusbモジュールをリロードします

Sudo modprobe -r btusb
Sudo modprobe btusb

そして、dmesgをチェックして、ファームウェアがロードされているか、エラーがあるかどうかを確認します

dmesg | tail

カーネルが異なるファイル名を期待している場合、これは別のファームウェア読み込みエラーを表示する可能性があります

3
Jeremy31