[Ubuntu-x-swat] [Bug 1386127] Re: mouse does not work correctly after suspend

2015-02-24 Thread Christopher M. Penalver
Erki Hallingu, could you please test the latest upstream kernel available from the very top line at the top of the page (the release names are irrelevant for testing, and please do not test the daily folder) following https://wiki.ubuntu.com/KernelMainlineBuilds ? It will allow additional upstream

[Ubuntu-x-swat] [Bug 1386127] Re: mouse does not work correctly after suspend

2015-02-24 Thread Erki Hallingu
erki@siil:~$ sudo dmidecode -s bios-version sudo dmidecode -s bios-release-date Version 1.14 04/26/2013 erki@siil:~$ -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xorg in Ubuntu. https://bugs.launchpad.net/bugs/1386127 Title: mouse does

[Ubuntu-x-swat] [Bug 1386127] Re: mouse does not work correctly after suspend

2015-02-24 Thread Erki Hallingu
Unfortunately this did not help. Still exactly the same symptoms, after syspend mouse moves but unable to move or interact with windows. reenabled my pm script and everything works OK again. So still psmouse needs reload after suspend. I'm also currently using ubuntu 15.04 with all updates

[Ubuntu-x-swat] [Bug 1386127] Re: mouse does not work correctly after suspend

2015-02-23 Thread Christopher M. Penalver
Erki Hallingu, thank you for reporting this and helping make Ubuntu better. As per http://support.ts.fujitsu.com/Download/ShowFiles.asp an update to your computer's buggy and outdated BIOS is available (1.14). If you update to this following https://help.ubuntu.com/community/BIOSUpdate does it

[Ubuntu-x-swat] [Bug 1386127] Re: mouse does not work correctly after suspend

2014-10-27 Thread Erki Hallingu
I'm able to fix mouse by: sudo rmmod psmouse;sudo modprobe psmouse -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xorg in Ubuntu. https://bugs.launchpad.net/bugs/1386127 Title: mouse does not work correctly after suspend To manage

[Ubuntu-x-swat] [Bug 1386127] Re: mouse does not work correctly after suspend

2014-10-27 Thread Erki Hallingu
I was able to fix (workaround) the issue with following /etc/pm/sleep.d script: #!/bin/sh # restart psmouse after waking from suspend . ${PM_FUNCTIONS} restart_mouse() { rmmod psmouse modprobe psmouse } case $1 in thaw|resume) restart_mouse