[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

xorg-server: Changes to 'debian-unstable'



 debian/changelog                    |    3 +++
 debian/xserver-xorg-core.bug.script |   11 +++++++++--
 2 files changed, 12 insertions(+), 2 deletions(-)

New commits:
commit 232df1898c10295b44dfc27eb791702dbcffe0b4
Author: Julien Cristau <jcristau@debian.org>
Date:   Wed May 20 18:52:08 2009 +0200

    In the bug script, grep dmesg for agp in addition to drm.

diff --git a/debian/changelog b/debian/changelog
index e588de3..c5627f0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ xorg-server (2:1.6.1.901-3) UNRELEASED; urgency=low
     causes visual corruption in some cases.  Thanks, Michel Dänzer!
   * Only include hal info for keyboards, mice, touchpads and tablets in the
     bug script.
+  * In the bug script, grep dmesg for agp in addition to drm.
 
  -- Julien Cristau <jcristau@debian.org>  Thu, 14 May 2009 21:05:26 +0200
 
diff --git a/debian/xserver-xorg-core.bug.script b/debian/xserver-xorg-core.bug.script
index 944f5f3..c26204b 100644
--- a/debian/xserver-xorg-core.bug.script
+++ b/debian/xserver-xorg-core.bug.script
@@ -131,7 +131,7 @@ fi
 
 if [ -x /bin/dmesg ]; then
     printf "DRM Information from dmesg:\n"
-    dmesg | grep 'drm'
+    dmesg | egrep -i 'drm|agp'
 fi
 
 printf "\n"

commit 181342edf3ebe19f51241ad5cc823554336a90b7
Author: Julien Cristau <jcristau@debian.org>
Date:   Wed May 20 18:50:07 2009 +0200

    filter lshal output for the devices we're interested in
    
    Only include hal info for keyboards, mice, touchpads and
    tablets in the bug script.

diff --git a/debian/changelog b/debian/changelog
index 6aea0c9..e588de3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,8 @@ xorg-server (2:1.6.1.901-3) UNRELEASED; urgency=low
   * xvfb-run: use mktemp to create the temporary directory.
   * Change default for ExaOptimizeMigration to false.  This option still
     causes visual corruption in some cases.  Thanks, Michel Dänzer!
+  * Only include hal info for keyboards, mice, touchpads and tablets in the
+    bug script.
 
  -- Julien Cristau <jcristau@debian.org>  Thu, 14 May 2009 21:05:26 +0200
 
diff --git a/debian/xserver-xorg-core.bug.script b/debian/xserver-xorg-core.bug.script
index 11f83be..944f5f3 100644
--- a/debian/xserver-xorg-core.bug.script
+++ b/debian/xserver-xorg-core.bug.script
@@ -119,7 +119,14 @@ fi
 
 if [ -x /usr/bin/lshal ]; then
     printf "HAL Information (lshal):\n"
-    lshal
+    for udi in `(hal-find-by-capability --capability input.keys;
+                 hal-find-by-capability --capability input.mouse;
+                 hal-find-by-capability --capability input.touchpad;
+                 hal-find-by-capability --capability input.tablet
+                )|sort -u`;
+    do
+        lshal -u "$udi"
+    done
 fi
 
 if [ -x /bin/dmesg ]; then


Reply to: