qubes-core-admin-linux/dracut/modules.d/90extra-modules/module-setup.sh
Marek Marczykowski-Górecki f66be6c943
dracut: include all USB controllers drivers
dracut in Fedora 20 doesn't know about *-pci modules (which were split
of *-hcd). So add them manually, in all flavors (ehci, ohci, xhci).

Fixes QubesOS/qubes-issues#1517
2015-12-24 03:26:36 +01:00

12 lines
284 B
Bash
Executable File

#!/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 || :
}