Hi all,

same problem on a HP8540p, also for hibernation.
Based on the solution proposed above, I wrote this script that also allows to 
hibernate:
For instance, I called it
/etc/pm/sleep.d/01fix_usb3

#!/bin/sh
# Fix USB3 suspend and hibernate problems
case $1 in
hibernate)
modprobe -r xhci
;;
suspend)
modprobe -r xhci
;;
thaw)
modprobe xhci
;;
resume)
modprobe xhci
;;
*)  echo "USB3 fix script: wrong argument!"
;;
esac

Remember to give to the script execute rights 
(http://www.disi.unitn.it/~ferro/index.php/linux).
Hope it helps!
Adamo

-- 
Cannot suspend with a USB3 port (HP8540w)
https://bugs.launchpad.net/bugs/562484
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to