blob: e0e1c6f0db70c5ddf489c959bd54c5f0b0756c97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
set -e
if [ $(id -u) -ne 0 ]; then
echo "You need to be root to execute this script"
exit 1
fi
modprobe -r xhci_pci
modprobe -r xhci_hcd
modprobe xhci_hcd
modprobe xhci_pci
|