O adaptador Bluetooth Broadcom não é reconhecido (0a5c: 2045)

0

Não consigo encontrar o arquivo hex correspondente do Windows também para 0a5c: 2045 para tentar esta solução: link

Conforme solicitado, o log de lspci -knn | grep Net -A2; lsusb :

00:19.0 Ethernet controller [0200]: Intel Corporation 82579LM Gigabit Network Connection [8086:1502] (rev 06)


DeviceName:  Onboard LAN
    Subsystem: Lenovo Device [17aa:1027]

--
09:00.0 Ethernet controller [0200]: Intel Corporation 82574L Gigabit Network Connection [8086:10d3]
    Subsystem: Lenovo Device [17aa:1027]


Kernel driver in use: e1000e
Bus 004 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 005: ID 2717:1260  
Bus 001 Device 004: ID 0a5c:2045 Broadcom Corp. Bluetooth Controller
Bus 001 Device 003: ID 17ef:6019 Lenovo 
Bus 001 Device 002: ID 0461:4e04 Primax Electronics, Ltd 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

O adaptador que estou usando tem o id 0a5c: 2045, para o qual eu não consegui obter o arquivo hexadecimal do Windows também.

  $ uname -a; hciconfig -a
Linux ankur-ThinkStation-D30 4.2.0-19-generic #23-Ubuntu SMP Wed Nov 11 11:39:30 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
    
por Ankur Anandapu 28.11.2015 / 18:22

1 resposta

0

Existe um problema com o BCM2045 que foi recentemente corrigido pelo upstream, eu apliquei um patch na fonte do kernel

sudo apt-get install build-essential linux-headers-$(uname -r)
wget https://www.dropbox.com/s/y4c8nm8fr1f2amx/bluetooth-4.2.tar.gz
tar -zxvf bluetooth-4.2.tar.gz
cd bluetooth
make -C /lib/modules/$(uname -r)/build M=$PWD modules
sudo mv /lib/modules/$(uname -r)/kernel/drivers/bluetooth/btusb.ko /lib/modules/(uname -r)/kernel/drivers/bluetooth/btusb.ko.bak
sudo cp btusb.ko /lib/modules/4.2.0-18-generic/kernel/drivers/bluetooth/btusb.ko

Reinicialize e veja se ele corrige o problema com o bluetooth, se for confirmado que funciona, eu posso fazer uma versão DKMS que não terá que ser recompilada quando você atualizar para um kernel mais novo

O patch que eu usei originou-se de aqui

    
por Jeremy31 30.11.2015 / 23:35