On 03/15/2013 09:08 AM, Gordon Messmer wrote:
I haven't tried to
use the DisplayPort output or BlueTooth, but the latter is at least
correctly detected on boot.

I've learned that btusb needs to be removed on suspend. The following script will accomplish that.

/usr/lib/systemd/system-sleep/bluetooth.sh:

#!/bin/sh

case $1 in
  pre)
    echo "Removing module btusb..."
    rmmod btusb
    ;;
  post)
    echo "Re-loading module btusb..."
    modprobe btusb
    ;;
esac

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Reply via email to