[Bug 810327] Re: [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend and resume

2012-05-02 Thread Torsten Casselt
Also fixed on PackardBell EasyNote TK85 with kernel 3.2.0.24. Thank you!

** Changed in: linux (Ubuntu)
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810327

Title:
  [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend
  and resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 810327] Re: [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend and resume

2012-02-01 Thread David Wonderly
Wanted to note, with 12.04 daily and the kernel updates (Or, what ever
update was added...) This issue is fixed. and there was much
rejoicing!

Cheers!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810327

Title:
  [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend
  and resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 810327] Re: [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend and resume

2011-11-25 Thread Torsten Casselt
Confirmed with Kubuntu 11.10 on PackardBell EasyNote TK85 with kernel 3.0.0.13.
Both workarounds work.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810327

Title:
  [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend
  and resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 810327] Re: [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend and resume

2011-09-27 Thread David Wonderly
I also have a Dell Vostro V13 and am dealing with this issue. I have
found a decent workaround for it though.

What you want to do is make a script that will execute on resume.

Have a look at folder /etc/pm/sleep.d/ - all scripts within this folder
are automatically run as root-user after/before suspend or hibernate.

The script needs to fit this example:

#!/bin/bash
case $1 in
hibernate|suspend)
ACTION BEFORE SUSPEND/HIBERNATE
;;
thaw|resume)
ACTION AFTER RESUME
;;
*)
;;
esac
exit $?

I had already made this script as ps.sh:

#!/bin/bash
rmmod psmouse
modprobe psmouse

So, I just tossed the two together and this is how it works:

sudo touch /etc/pm/sleep.de/99-touchpad-restart.sh
sudo chmod +x /etc/pm/sleep.de/99-touchpad-restart.sh
sudo nano /etc/pm/sleep.de/99-touchpad-restart.sh

#!/bin/bash
case $1 in
thaw|resume)
/home/darkwingduck/ps.sh/dev/null
;;
*)
;;
esac
exit $?

Works like a charm. I know it's not a perm fix, but it works.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810327

Title:
  [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend
  and resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 810327] Re: [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend and resume

2011-09-26 Thread Daniel Manrique
Retested and confirmed to be happening with Oneiric, on kernel
3.0.0-11.18.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810327

Title:
  [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend
  and resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 810327] Re: [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend and resume

2011-08-11 Thread Daniel Manrique
Hi,

I have here 3 Dell Vostro V13s on which I was able to reproduce the
original problem, by suspending them and upon resume, the mouse pointer
would not work.

My workaround was to rmmod psmouse and then modprobe psmouse, this
reenables the mouse functionality.

Of note, David Bensimon tried reproducing this problem on Lucid (10.04)
with the 2.6.32 kernel and was unable to recreate this issue. However, I
got hit by it under both Natty (2.6.38-11 from proposed and the original
2.6.38-8 kernel from Natty release) and Oneiric (3.0.0-7.9).

I  also have a Dell Latitude 13, it's almost 100% identical to the
Vostros, and also reports a Synaptics touchpad, but this one seems
unaffected by the problem, I can suspend/resume and the pad keeps
working. David suspects the BIOS revision might also be a factor in
whether the touchpad restores correctly or not.

On my test systems the patched kernel (Linux version 2.6.38-11-generic
(root@gomeisa) (gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu4) )
#49~lp810327v201108091824 SMP Tue Aug 9 17:25:25 UTC 2011) does NOT
reenable the mouse after resuming.

I'll attach dmesg from both Vostro V13s to see if any useful information
comes up.

Andy, these machines live for testing so if you need either me or David
to run tests or provide hardware and/or debugging information, please
don't hesitate to ask. We can install and test anything you need.

Also, if a separate bug would be better for the Dell Vostros, let me
know so I can file accordingly.

Thanks!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810327

Title:
  [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend
  and resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 810327] Re: [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend and resume

2011-08-11 Thread Daniel Manrique
** Attachment added: Vostro V13 running Natty with patched 2.6.38-11 kernel, 
includes boot and suspend/resume cycle
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+attachment/2269538/+files/dmesg-5575.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810327

Title:
  [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend
  and resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 810327] Re: [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend and resume

2011-08-11 Thread Daniel Manrique
** Attachment added: Vostro V13 running Oneiric with patched 2.6.38-11 kernel 
(I just installed this kernel and rebooted with it), includes boot and 
suspend/resume cycle
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+attachment/2269539/+files/dmesg-5578.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810327

Title:
  [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend
  and resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 810327] Re: [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend and resume

2011-08-10 Thread Andy Whitcroft
@Philipp -- could you include the output of the command dmesg from the
machine when booted with the test kernel.  That has diagnostics to
confirm the patch is working in the intended way; as it could affect
quirking for key release and I do not have any of the affected h/w to
confirm.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810327

Title:
  [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend
  and resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 810327] Re: [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend and resume

2011-08-10 Thread Philipp Wendler
Here is the dmesg output for booting the kernel and going to hibernate
(STD) because that's what I can provide without rebooting. If you need
the output of just a single boot or perhaps including a standby, I could
also produce that.

** Attachment added: dmesg with test kernel
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+attachment/2265560/+files/dmesg-2.6.38-11-generic

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810327

Title:
  [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend
  and resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 810327] Re: [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend and resume

2011-08-09 Thread Jonathan Davies
This bug is also present on a Dell Vostro V13 running Natty.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810327

Title:
  [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend
  and resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 810327] Re: [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend and resume

2011-08-09 Thread Andy Whitcroft
Ok it may be possible to quirk this keybaord reset from the kernel
automatically.  For those who are able to reproduce this on Natty could
you test the kernels below and report back here.  Please remember to
remove any GRUB modifications to turn on the atkbd.reset flag.  Please
indicate whether this kernel works for you and please include a dmesg
command output from a boot in your report with this kernel whether it
works or not.  Test kernels are at the URL below:

http://people.canonical.com/~apw/lp810327-natty/

Thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810327

Title:
  [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend
  and resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 810327] Re: [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend and resume

2011-08-09 Thread Philipp Wendler
The test kernel from linux-
image-2.6.38-11-generic_2.6.38-11.49~lp810327v201108091824_i386.deb
works on my Amilo Pro V3205 and fixes the problem.

Thanks very much for solving it, even after so long time (the original
bug report stated it was present at least since Dapper)! Hope it will
make it into the Ubuntu kernels.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810327

Title:
  [Fujitsu Amilo] Synaptics touchpad ceases functioning after suspend
  and resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/810327/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs