Created
August 16, 2018 07:07
-
-
Save cybic/456d7cdddb8cf2e7c5e1b5ebcd2ca304 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Reset xHCI | |
for xhci in /sys/bus/pci/drivers/?hci_hcd ; do | |
cd $xhci | |
echo Resetting devices from $xhci... | |
for i in ????:??:??.? ; do | |
echo -n "$i" > unbind | |
echo -n "$i" > bind | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment