From 0bb6fcbcb28d4e1e5a71b1122cb4c0f07cb8a0f5 Mon Sep 17 00:00:00 2001 From: Vasudev Kamath Date: Sat, 3 Mar 2018 20:53:44 +0530 Subject: A bug observed before which was disabling xhci devices. --- reenable_xhci_hcd | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 reenable_xhci_hcd diff --git a/reenable_xhci_hcd b/reenable_xhci_hcd new file mode 100755 index 0000000..e0e1c6f --- /dev/null +++ b/reenable_xhci_hcd @@ -0,0 +1,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 -- cgit v1.2.3