load the xhci USB3 modules as well

This commit is contained in:
Trammell Hudson 2017-04-03 17:09:54 -04:00
parent 85a77cf5de
commit 3dcc3d4b49
Failed to extract signature

View File

@ -10,6 +10,15 @@ if ! lsmod | grep -q ehci_pci; then
insmod /lib/modules/ehci-pci.ko \
|| die "ehci_pci: module load failed"
fi
if ! lsmod | grep -q xhci_hcd; then
insmod /lib/modules/xhci-hcd.ko \
|| die "ehci_hcd: module load failed"
fi
if ! lsmod | grep -q xhci_pci; then
insmod /lib/modules/xhci-pci.ko \
|| die "ehci_pci: module load failed"
sleep 5
fi
if [ ! -d /media ]; then
mkdir /media