Como ativar o bluetooth usando o Lenovo 480G

1

Isso foi mencionado antes para diferentes modelos da Lenovo (aqui: Como habilitar o Bluetooth no meu Lenovo IdeaPad Z580? .

O interruptor de alternância é desativado, a ativação não faz nada, os diferentes tipos de comando da BT também não funcionam. Houve uma sugestão para atualizar o kernel para 3.7 * (estou executando o 3.6 * agora), mas quando fiz isso, não consegui descobrir como obter suporte de driver de rede com fio. Meu erro para obter uma Lenovo, parece bom, mas o suporte do Linux parece estar faltando.

rfkill list
0: ideapad_wlan: Wireless LAN
    Soft blocked: no
    Hard blocked: no
1: ideapad_bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: no
2: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no

Alguma sugestão de como ativar o Bluetooth?

kernel messages:
dmesg | grep -i bluetooth
[   26.701536] Bluetooth: Core ver 2.16
[   26.701554] Bluetooth: HCI device and connection manager initialized
[   26.701556] Bluetooth: HCI socket layer initialized
[   26.701557] Bluetooth: L2CAP socket layer initialized
[   26.701560] Bluetooth: SCO socket layer initialized
[   26.719851] Bluetooth: RFCOMM TTY layer initialized
[   26.719855] Bluetooth: RFCOMM socket layer initialized
[   26.719856] Bluetooth: RFCOMM ver 1.11
[   26.800299] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   26.800301] Bluetooth: BNEP filters: protocol multicast

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 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 1a40:0201 Terminus Technology Inc. FE 2.1 7-port Hub
Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. 
Bus 002 Device 003: ID 5986:0294 Acer, Inc 
Bus 001 Device 005: ID 04b4:0033 Cypress Semiconductor Corp. Mouse
Bus 001 Device 006: ID 04d9:1503 Holtek Semiconductor, Inc. Shortboard Lefty
    
por Robert Virgin 15.02.2013 / 14:59

1 resposta

0

Eu uso um Lenovo ThinkPad X200 Tablet e o Bluetooth está funcionando para mim. Talvez isso te ajude.

Eu uso bluez (4.101-r5) e faço o daemon iniciar no runlevel padrão pelo OpenRC. Para conectar dispositivos, eu uso o applet de gnome-bluetooth (3.6.1). Uma vez instalado, você deve adicionar uma seção "Bluetooth Settings" ao seu Gnome Control Center.

Aqui estão algumas informações adicionais.

rfkill :

$ rfkill list
0: phy0: Wireless LAN
        Soft blocked: no
        Hard blocked: no
1: tpacpi_bluetooth_sw: Bluetooth
        Soft blocked: no
        Hard blocked: no
4: hci0: Bluetooth
        Soft blocked: no
        Hard blocked: no

lsusb :

$ lsusb | grep -i bluetooth
Bus 004 Device 005: ID 0a5c:2145 Broadcom Corp. Bluetooth with Enhanced Data Rate II

lsmod :

bluetooth             150763  25 bnep,hidp,btusb,rfcomm
rfkill                 13496  6 cfg80211,thinkpad_acpi,bluetooth

dmesg :

$ dmesg | grep -i bluetooth
[    5.352964] usb 4-2: Product: ThinkPad Bluetooth with Enhanced Data Rate II
[    5.383455] Bluetooth: Core ver 2.16
[    5.383470] Bluetooth: HCI device and connection manager initialized
[    5.383477] Bluetooth: HCI socket layer initialized
[    5.383480] Bluetooth: L2CAP socket layer initialized
[    5.383483] Bluetooth: SCO socket layer initialized
[    9.216268] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    9.216272] Bluetooth: BNEP filters: protocol multicast
[    9.216287] Bluetooth: BNEP socket layer initialized
[    9.297778] Bluetooth: RFCOMM TTY layer initialized
[    9.297794] Bluetooth: RFCOMM socket layer initialized
[    9.297798] Bluetooth: RFCOMM ver 1.11
[   25.493122] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   25.493134] Bluetooth: HIDP socket layer initialized
[  617.705170] usb 4-2: Product: ThinkPad Bluetooth with Enhanced Data Rate II
[ 4486.165016] usb 4-2: Product: ThinkPad Bluetooth with Enhanced Data Rate II

configuração do kernel :

$ zcat /proc/config.gz | grep 'CONFIG_BT[=_]'
CONFIG_BT=m
CONFIG_BT_RFCOMM=m
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=m
CONFIG_BT_BNEP_MC_FILTER=y
CONFIG_BT_BNEP_PROTO_FILTER=y
CONFIG_BT_HIDP=m
CONFIG_BT_HCIBTUSB=m
# CONFIG_BT_HCIBTSDIO is not set
# CONFIG_BT_HCIUART is not set
CONFIG_BT_HCIBCM203X=m
# CONFIG_BT_HCIBPA10X is not set
# CONFIG_BT_HCIBFUSB is not set
# CONFIG_BT_HCIDTL1 is not set
# CONFIG_BT_HCIBT3C is not set
# CONFIG_BT_HCIBLUECARD is not set
# CONFIG_BT_HCIBTUART is not set
# CONFIG_BT_HCIVHCI is not set
# CONFIG_BT_MRVL is not set
# CONFIG_BT_ATH3K is not set
    
por Attila O. 16.02.2013 / 10:30