Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. ehci-pci 0000:00:1d.0: port 1 resume error -19
  2. ehci-pci 0000:00:1d.0: port 2 resume error -19
  3. usb usb3-port1: over-current condition
  4. usb usb3-port1: connect-debounce failed
  5. usb usb3-port2: over-current condition
  6. usb usb3-port2: connect-debounce failed
  7.  
  8. #!/bin/bash
  9.  
  10. case $1/$2 in
  11. pre/*)
  12. # Unbind ehci for preventing error
  13. echo -n "0000:00:1d.0" | tee /sys/bus/pci/drivers/ehci-pci/unbind
  14. ;;
  15. post/*)
  16. # Bind ehci for preventing error
  17. echo -n "0000:00:1d.0" | tee /sys/bus/pci/drivers/ehci-pci/bind
  18. ;;
  19. esac
  20.  
  21. $ sudo chmod 755 /lib/systemd/system-sleep/ehci-pci.sh
  22.  
  23. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash tpm_tis.force=1"
  24.  
  25. $ sudo update-grub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement