With latest kernel there is no problem becouse bluetooth key is discovered as 
XF86Bluetooth, and wifi key as XF86Wlan. Probably acer_wmi latest kernel module 
fixed that. Currently i use two scripts to make keys work, and bind them in 
gnome config editor:
-------------------------------------
#Bluetoot enable script - Szymon Zycinski (sz.zycin...@gmail.com)
#!/bin/bash
t1=`cat /sys/devices/platform/acer-wmi/bluetooth`
echo $t1
if [ "$t1" = "1" ]; then 
    echo 0 > /sys/devices/platform/acer-wmi/bluetooth
else
    echo 1 > /sys/devices/platform/acer-wmi/bluetooth
fi
-------------------------------------
#Wifi enable script - Szymon Zycinski (sz.zycin...@gmail.com)
#!/bin/bash
t1=`cat /sys/devices/platform/acer-wmi/wireless`
echo $t1
if [ "$t1" = "1" ]; then 
    sudo rmmod b43
    echo 0 >  /sys/devices/platform/acer-wmi/wireless
else
    sudo modprobe -v b43
    echo 1 >  /sys/devices/platform/acer-wmi/wireless
fi
-------------------------------------

of course it is prepared for my aspire 3610, but you can adjust it for
other laptops

-- 
no acer_acpi module - cannot enable bluetooth ubuntu 8.10
https://bugs.launchpad.net/bugs/289069
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to