Created
July 11, 2013 16:43
-
-
Save cmartinbaughman/5977090 to your computer and use it in GitHub Desktop.
Possible addition to Synaptics Touchpad driver, dynamic kernel module loading on boot:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat <<EOF >/etc/sysconfig/modules/mydriver | |
#!/bin/bash | |
/sbin/modprobe -R psmouse >/dev/null 2>&1 | |
/sbin/modprobe psmouse proto=imps >/dev/null 2>&1 | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment