mirror of
https://github.com/linuxboot/heads.git
synced 2025-01-30 16:14:01 +00:00
load the xhci USB3 modules as well
This commit is contained in:
parent
85a77cf5de
commit
3dcc3d4b49
@ -10,6 +10,15 @@ if ! lsmod | grep -q ehci_pci; then
|
|||||||
insmod /lib/modules/ehci-pci.ko \
|
insmod /lib/modules/ehci-pci.ko \
|
||||||
|| die "ehci_pci: module load failed"
|
|| die "ehci_pci: module load failed"
|
||||||
fi
|
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
|
if [ ! -d /media ]; then
|
||||||
mkdir /media
|
mkdir /media
|
||||||
|
Loading…
x
Reference in New Issue
Block a user