Files
LFSPkgBuilds/LFSPkgBuildScripts/kernel/postinstall
2018-07-16 17:08:37 +01:00

17 lines
415 B
Bash
Executable File

#!/bin/bash -e
#©keithhedger Wed 4 Feb 13:38:52 GMT 2015 kdhedger68713@gmail.com
. /usr/share/LFSPkg/LFSFunctions
mkdir -vp /etc/modprobe.d||true
cat > /etc/modprobe.d/usb.conf << "EOF"
# Begin /etc/modprobe.d/usb.conf
install ohci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i ohci_hcd ; true
install uhci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i uhci_hcd ; true
# End /etc/modprobe.d/usb.conf
EOF