I've been having this issue also.  After a conversation in #ubuntu on
IRC, someone pointed out a script for /etc/pm/sleep.d

The script as shown below seems to have fixed this issue, although it is
(at least to me) a workaround.

Thanks
_______________________________
#!/bin/bash
#Code from http://ubuntuforums.org/showthread.php?t=1387211

. /usr/lib/pm-utils/functions

case "$1" in
    hibernate|suspend)
    rfkill block bluetooth
    ;;
    thaw|resume)
    rfkill unblock bluetooth
    rmmod btusb
    modprobe btusb
    ;;
    *)
    ;;
esac

exit

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1213239

Title:
  [Lenovo ThinkPad Twist] Bluetooth subsystem dies after suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1213239/+subscriptions

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

Reply via email to