Re: [Bug 650529] Re: Dell Inspiron 14R - N4010, Synaptics touchpad not recognized

2010-11-28 Thread Bruce Kearns
Hi,

OK by me.  Go ahead and close it.

Bruce

-Original Message-
From: Gursimran singh Mohar simar@gmail.com
Reply-to: Bug 650529 650...@bugs.launchpad.net
To: brkearn...@gmail.com
Subject: [Bug 650529] Re: Dell Inspiron 14R - N4010, Synaptics touchpad
not recognized
Date: Sat, 27 Nov 2010 05:41:37 -


Hi again Bruce,

I'm closing the bug report, if you feel you can provide us with the
required debugging information (for that you will have to have a bug
infected lucid pc), you can reopen the bug report by resetting the
status of the bug to New again.

Thanks for reporting the bug..
Cheers!!

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Status: Incomplete = Invalid

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] Re: Dell Inspiron 14R - N4010, Synaptics touchpad not recognized

2010-11-23 Thread Bruce Kearns
This seems to be working fixed in the maverick release. I have not made
patches to apply to Lucid.

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 657338] Re: Special function keys and lid events don't work after first suspend/resume

2010-11-05 Thread Bruce Kearns
I was experiencing a similar problem on a Dell Inspiron 14R (N4010)
since I installed 10.04.  This was the initial install.  The problem I
had was that the system would go into suspend and there was no way to
resume.  Open the lid -- nothing happened.  Hit the keyboard, noting
happened.  Move the mouse, nothing happened.  Push the resume button ---
nothing happened.

However, I do have a workaround that makes the suspend/resume cycle work
correctly.  I added the atkbd.reset parameter to my kernel, and I now do
not have any troubles with the suspend/resume cycle.  To do this, I
edited my /etc/default/grub and added the atkbd.reset parameter to my
default_linux load line right next to quiet splash.  The is ran a sudo
update-grub and I have not had any problem with resume or the FN keys.

Bruce

-- 
Special function keys and lid events don't work after first suspend/resume
https://bugs.launchpad.net/bugs/657338
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 551452] Re: Empathy will not show Yahoo chatroom invitations

2010-10-11 Thread Bruce Kearns
I cannot seem to get the Empathy client to connect to Yahoo at all and
the account settings box will not login nor will it save the settings I
enter.

-- 
Empathy will not show Yahoo chatroom invitations
https://bugs.launchpad.net/bugs/551452
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 568611] Re: Screen brightness control fails on Dell Studio 1558

2010-10-10 Thread Bruce Kearns
Kamal -- what is the status of the fix for the intel-gfx?  Looks like
the second thought comment did not lead to any more activity.

-- 
Screen brightness control fails on Dell Studio 1558
https://bugs.launchpad.net/bugs/568611
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 178038] Re: npviewer.bin crashed with SIGSEGV

2010-10-01 Thread Bruce Kearns
I encountered this bug in both Lucid and Maverick, but the issue with
flash on 64 bit systems is well known.  Adobe Labs has released a new 64
bit version (alpha-level) of Flash for all platforms.

http://labs.adobe.com/downloads/flashplayer10.html

I removed the default flash that came with the Maverick upgrade and
followed the instructions for installing the Adobe Square release.  No
further crashes with the npviewer and libflashplayer.  The Square
release does not use nswrapper.

-- 
npviewer.bin crashed with SIGSEGV 
https://bugs.launchpad.net/bugs/178038
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] Re: Dell Inspiron 14R - N4010, Synaptics touchpad not recognized

2010-09-30 Thread Bruce Kearns
I have been looking into this problem, especially Dmitry Torokhov's work
around this issue.  It appears that there is a patch that has been
implemented in Gentoo for the 2.6.32 kernel series. Since this patch is
dated 2010-07-29, I am wondering if this patch has been incorporated
into the mainline kernel builds.  Please confirm.  If it has not, I plan
to build a kernel that incorporates this patch.

Patch is as follows

--- a/drivers/input/mouse/synaptics.c   2010-07-29 09:14:58.0 -0400
+++ b/drivers/input/mouse/synaptics.c   2010-07-29 09:16:34.0 -0400
@@ -136,8 +136,14 @@ static int synaptics_capability(struct p
return -1;
priv-capabilities = (cap[0]  16) | (cap[1]  8) | cap[2];
priv-ext_cap = 0;
-   if (!SYN_CAP_VALID(priv-capabilities))
+
+   /*
+* Older firmwares had submodel ID fixed to 0x47
+*/
+   if (SYN_ID_FULL(priv-identity)  0x705 
+   SYN_CAP_SUBMODEL_ID(priv-capabilities) != 0x47) {
return -1;
+   }
 
/*
 * Unless capExtended is set the rest of the flags should be ignored
--- a/drivers/input/mouse/synaptics.h   2010-07-29 09:15:00.0 -0400
+++ b/drivers/input/mouse/synaptics.h   2010-07-29 09:17:10.0 -0400
@@ -45,7 +45,7 @@
 #define SYN_CAP_FOUR_BUTTON(c) ((c)  (1  3))
 #define SYN_CAP_MULTIFINGER(c) ((c)  (1  1))
 #define SYN_CAP_PALMDETECT(c)  ((c)  (1  0))
-#define SYN_CAP_VALID(c)   c)  0x00ff00)  8) == 0x47)
+#define SYN_CAP_SUBMODEL_ID(c) (((c)  0x00ff00)  8)
 #define SYN_EXT_CAP_REQUESTS(c)(((c)  0x70)  20)
 #define SYN_CAP_MULTI_BUTTON_NO(ec)(((ec)  0x00f000)  12)
 
@@ -61,6 +61,7 @@
 #define SYN_ID_MODEL(i)(((i)  4)  0x0f)
 #define SYN_ID_MAJOR(i)((i)  0x0f)
 #define SYN_ID_MINOR(i)(((i)  16)  0xff)
+#define SYN_ID_FULL(i) ((SYN_ID_MAJOR(i)  8) | 
SYN_ID_MINOR(i))
 #define SYN_ID_IS_SYNAPTICS(i) i)  8)  0xff) == 0x47)
 
 /* synaptics special commands */

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] Re: Dell Inspiron 14R - N4010, Synaptics touchpad not recognized

2010-09-30 Thread Bruce Kearns
It appears that this patch is included in 10.10.  I will wait for the
final release and test it then.  Hopefully, the patch fixes this issue
because this touchpad behaving as a pointer makes this laptop very
difficult to use.  No practical way to turn it off, and the thing is so
sensitive that typing is extremely difficult,  I'll update this bug
report once 10.10 is released and I update from 10.04LTS.

Bruce

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] Re: Dell Inspiron 14R - N4010, Synaptics touchpad not recognized

2010-09-30 Thread Bruce Kearns
I updated to the 10.10 release candidate and this issue is resolved. For
the record, kernel info is 2.6.35-22-generic #33-Ubuntu SMP

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Status: New = Incomplete

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Status: Incomplete = Fix Released

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
 Assignee: (unassigned) = Bruce Kearns (brkearns67)

** Description changed:

  Binary package hint: xserver-xorg-input-synaptics
  
  Dell Inspiron 14R - N4010.  Running Ubuntu Lucid Lynx currently at
  2.6.32-25.  The synaptics touchpad is failing to be recognized by udev
  as a touchpad during boot, thus the ID_INPUT_TOUCHPAD environment
  variable is not being set.  The end result is the touchpad is being
  configured as a pointer under evdev (evdev pointer catchall) instead of
  a touchpad using the synaptics driver.
  
  This bug is more than likely a kernel bug and not a synaptics driver bug.
- --- 
+ ---
  Architecture: amd64
  DistroRelease: Ubuntu 10.04
  DkmsStatus: Error: [Errno 2] No such file or directory
  InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100429)
  MachineType: Dell Inc. Inspiron N4010
  Package: xserver-xorg-input-synaptics 1.2.2-1ubuntu4 [modified: 
lib/udev/rules.d/66-xorg-synaptics.rules]
  PackageArchitecture: amd64
  ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-25-generic 
root=UUID=bebd2c9c-dd1f-460b-a42c-7e70ca1fe3e4 ro quiet splash
  ProcEnviron:
-  LANG=en_US.utf8
-  SHELL=/bin/bash
+  LANG=en_US.utf8
+  SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.32-25.44-generic 2.6.32.21+drm33.7
  Tags: lucid lucid
  Uname: Linux 2.6.32-25-generic x86_64
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
  dmi.bios.date: 04/21/2010
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A02
  dmi.board.name: 021CN3
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A02
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: A02
  dmi.modalias: 
dmi:bvnDellInc.:bvrA02:bd04/21/2010:svnDellInc.:pnInspironN4010:pvrA02:rvnDellInc.:rn021CN3:rvrA02:cvnDellInc.:ct8:cvrA02:
  dmi.product.name: Inspiron N4010
  dmi.product.version: A02
  dmi.sys.vendor: Dell Inc.
  glxinfo: Error: [Errno 2] No such file or directory
  system:
-  distro: Ubuntu
-  codename:   lucid
-  architecture:   x86_64
-  kernel: 2.6.32-25-generic
+  distro: Ubuntu
+  codename:   lucid
+  architecture:   x86_64
+  kernel: 2.6.32-25-generic

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 551234] Re: touchpad doesn't reconnect after resume: Synaptics ps2

2010-09-29 Thread Bruce Kearns
Nice to see the resume issue addressed.  There was another issue in this
bug - the fact that the Synaptics PS/2 touchpad was not being properly
recognized at boot by the kernel.  Is there another open bug to address
this still open issue?

-- 
touchpad doesn't reconnect after resume: Synaptics ps2
https://bugs.launchpad.net/bugs/551234
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] [NEW] Dell Inspiron 14R - N4010, Synaptics touchpad not recognized

2010-09-28 Thread Bruce Kearns
Public bug reported:

Binary package hint: xserver-xorg-input-synaptics

Dell Inspiron 14R - N4010.  Running Ubuntu Lucid Lynx currently at
2.6.32-25.  The synaptics touchpad is failing to be recognized by udev
as a touchpad during boot, thus the ID_INPUT_TOUCHPAD environment
variable is not being set.  The end result is the touchpad is being
configured as a pointer under evdev (evdev pointer catchall) instead of
a touchpad using the synaptics driver.

This bug is more than likely a kernel bug and not a synaptics driver
bug.

** Affects: xserver-xorg-input-synaptics (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: dell inspiron synaptics touchapd

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] Re: Dell Inspiron 14R - N4010, Synaptics touchpad not recognized

2010-09-28 Thread Bruce Kearns
apport information

** Tags added: apport-collected

** Description changed:

  Binary package hint: xserver-xorg-input-synaptics
  
  Dell Inspiron 14R - N4010.  Running Ubuntu Lucid Lynx currently at
  2.6.32-25.  The synaptics touchpad is failing to be recognized by udev
  as a touchpad during boot, thus the ID_INPUT_TOUCHPAD environment
  variable is not being set.  The end result is the touchpad is being
  configured as a pointer under evdev (evdev pointer catchall) instead of
  a touchpad using the synaptics driver.
  
- This bug is more than likely a kernel bug and not a synaptics driver
- bug.
+ This bug is more than likely a kernel bug and not a synaptics driver bug.
+ --- 
+ Architecture: amd64
+ DistroRelease: Ubuntu 10.04
+ DkmsStatus: Error: [Errno 2] No such file or directory
+ InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100429)
+ MachineType: Dell Inc. Inspiron N4010
+ Package: xserver-xorg-input-synaptics 1.2.2-1ubuntu4 [modified: 
lib/udev/rules.d/66-xorg-synaptics.rules]
+ PackageArchitecture: amd64
+ ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-25-generic 
root=UUID=bebd2c9c-dd1f-460b-a42c-7e70ca1fe3e4 ro quiet splash
+ ProcEnviron:
+  LANG=en_US.utf8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 2.6.32-25.44-generic 2.6.32.21+drm33.7
+ Tags: lucid lucid
+ Uname: Linux 2.6.32-25-generic x86_64
+ UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
+ dmi.bios.date: 04/21/2010
+ dmi.bios.vendor: Dell Inc.
+ dmi.bios.version: A02
+ dmi.board.name: 021CN3
+ dmi.board.vendor: Dell Inc.
+ dmi.board.version: A02
+ dmi.chassis.type: 8
+ dmi.chassis.vendor: Dell Inc.
+ dmi.chassis.version: A02
+ dmi.modalias: 
dmi:bvnDellInc.:bvrA02:bd04/21/2010:svnDellInc.:pnInspironN4010:pvrA02:rvnDellInc.:rn021CN3:rvrA02:cvnDellInc.:ct8:cvrA02:
+ dmi.product.name: Inspiron N4010
+ dmi.product.version: A02
+ dmi.sys.vendor: Dell Inc.
+ glxinfo: Error: [Errno 2] No such file or directory
+ system:
+  distro: Ubuntu
+  codename:   lucid
+  architecture:   x86_64
+  kernel: 2.6.32-25-generic

** Attachment added: BootDmesg.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650218/+files/BootDmesg.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] CurrentDmesg.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650219/+files/CurrentDmesg.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] Dependencies.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: Dependencies.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650220/+files/Dependencies.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] GdmLog.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: GdmLog.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650221/+files/GdmLog.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] GdmLog1.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: GdmLog1.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650222/+files/GdmLog1.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] GdmLog2.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: GdmLog2.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650223/+files/GdmLog2.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] Lspci.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: Lspci.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650224/+files/Lspci.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] Lsusb.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: Lsusb.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650225/+files/Lsusb.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] PciDisplay.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: PciDisplay.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650226/+files/PciDisplay.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] ProcCpuinfo.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650227/+files/ProcCpuinfo.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] ProcInterrupts.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650228/+files/ProcInterrupts.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] ProcModules.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: ProcModules.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650229/+files/ProcModules.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] RelatedPackageVersions.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: RelatedPackageVersions.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650230/+files/RelatedPackageVersions.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] UdevDb.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: UdevDb.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650231/+files/UdevDb.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] UdevLog.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: UdevLog.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650232/+files/UdevLog.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] XorgConf.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: XorgConf.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650233/+files/XorgConf.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] XorgLog.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: XorgLog.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650234/+files/XorgLog.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] XorgLogOld.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: XorgLogOld.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650235/+files/XorgLogOld.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] Xrandr.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: Xrandr.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650236/+files/Xrandr.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] setxkbmap.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: setxkbmap.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650237/+files/setxkbmap.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] xdpyinfo.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: xdpyinfo.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650238/+files/xdpyinfo.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650529] xkbcomp.txt

2010-09-28 Thread Bruce Kearns
apport information

** Attachment added: xkbcomp.txt
   
https://bugs.edge.launchpad.net/bugs/650529/+attachment/1650239/+files/xkbcomp.txt

-- 
Dell Inspiron 14R - N4010, Synaptics touchpad not recognized
https://bugs.launchpad.net/bugs/650529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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