From f66be6c94330212987e389e9c6dbff4e5b1db49c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Thu, 24 Dec 2015 03:26:36 +0100 Subject: [PATCH] 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 --- dracut/modules.d/90extra-modules/module-setup.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dracut/modules.d/90extra-modules/module-setup.sh b/dracut/modules.d/90extra-modules/module-setup.sh index 66f6c05..b9ca4bd 100755 --- a/dracut/modules.d/90extra-modules/module-setup.sh +++ b/dracut/modules.d/90extra-modules/module-setup.sh @@ -3,5 +3,9 @@ installkernel() { # ehci-hcd split off - instmods ehci-pci ehci-platform || : + 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 || : }