Hi All,
So I went back to B104 on the MSI Wind, just could not really get suspend / resume working on B107.
Suspend / resume works fine, the touchpad does not work after resume.
If I do this:
modinfo | grep mouse8042
grab the index
modunload -i <index>
modload /kernel/driver/mouse8042
Touchpad comes back on again
So I later found out you really don't have to do the modload, something, is doing it.
Randy F. gave me this:
MODID=`modinfo | grep mouse8042 | awk '{print $1}'`
modunload -i $MODID
I've just put it in a script in /usr/bin, I'll have to find a way to activate it after resume.
Dave