2013-06-14 02:03:47 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Install some missing modules
|
|
|
|
|
|
|
|
installkernel() {
|
|
|
|
# ehci-hcd split off
|
2015-12-24 02:26:36 +00:00
|
|
|
hostonly='' instmods ehci-pci ehci-platform || :
|
|
|
|
# xhci-hcd split off
|
|
|
|
hostonly='' instmods xhci-pci xhci-plat-hcd || :
|
|
|
|
# ohci-hcd split off
|
|
|
|
hostonly='' instmods ohci-pci || :
|
2013-06-14 02:03:47 +00:00
|
|
|
}
|