21 lines
363 B
Bash
Executable file
21 lines
363 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ $EUID != 0 ]] ; then
|
|
echo This must be run as root!
|
|
exit 1
|
|
fi
|
|
|
|
for xhci in /sys/bus/pci/drivers/?hci_hcd ; do
|
|
|
|
if ! cd $xhci ; then
|
|
echo Weird error. Failed to change directory to $xhci
|
|
exit 1
|
|
fi
|
|
|
|
echo Resetting devices from $xhci...
|
|
|
|
for i in ????:??:??.? ; do
|
|
echo -n "$i" > unbind
|
|
echo -n "$i" > bind
|
|
done
|
|
done
|