You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qubes-core-admin-linux/dracut/modules.d/90extra-modules/module-setup.sh

12 lines
284 B

#!/bin/bash
# Install some missing modules
installkernel() {
# ehci-hcd split off
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 || :
}