f66be6c943
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
12 lines
284 B
Bash
Executable File
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 || :
|
|
}
|