[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, 14 insertions(+)

New commits:
commit 49ec46b8307365aeeffb09849245a73bcb289562
Author: Cyril Brulebois <kibi@debian.org>
Date:   Wed Apr 14 15:10:50 2010 +0200

    Modify bug script to include kernel version.
    
    The uname in Xorg.*.log might not give enough details (like the Debian
    revision).

diff --git a/debian/changelog b/debian/changelog
index 5c50186..9ce203f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,9 @@ xorg-server (2:1.7.6-3) UNRELEASED; urgency=low
     udeb flavour (even on architectures where udebs are supposed to be
     built) to speed up debug builds. When this is used, the udeb is still
     built, but rather empty…
+  * Modify bug script to include kernel version (from /proc/version) since
+    the uname in Xorg.*.log might not give enough details (like the Debian
+    revision).
 
  -- Cyril Brulebois <kibi@debian.org>  Mon, 05 Apr 2010 20:25:26 +0200
 
diff --git a/debian/xserver-xorg-core.bug.script b/debian/xserver-xorg-core.bug.script
index 5a50561..2f12659 100644
--- a/debian/xserver-xorg-core.bug.script
+++ b/debian/xserver-xorg-core.bug.script
@@ -98,6 +98,17 @@ fi
 
 printf "\n"
 
+KERNEL_VERSION=/proc/version
+
+if [ -e "$KERNEL_VERSION" ]; then
+    printf "Kernel version ($KERNEL_VERSION):\n"
+    cat /proc/version
+else
+    printf "No kernel version found (missing $KERNEL_VERSION).\n"
+fi
+
+printf "\n"
+
 XORG_LOGS=$(ls -dt /var/log/Xorg.*.log 2>/dev/null)
 
 if [ -n "$XORG_LOGS" ]; then


Reply to: