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

xorg: Changes to 'debian-unstable'



 debian/changelog                |    8 ++++++--
 debian/xserver-xorg.postinst.in |    4 ++--
 2 files changed, 8 insertions(+), 4 deletions(-)

New commits:
commit 194afccc000ed55d9d7971edb6b06565370c9d34
Author: Brice Goglin <bgoglin@debian.org>
Date:   Sat Dec 22 17:46:25 2007 +0100

    Fix "no video driver modules found" message

diff --git a/debian/changelog b/debian/changelog
index aeec2e5..edbf9ec 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,10 +7,14 @@ xorg (1:7.3+9) UNRELEASED; urgency=low
     to prevent future mistakes.  Thanks, Michael Vogt!
 
   [ Timo Aaltonen ]
-  * dexconf: Remove reference to xserver-xorg/config/display/modes, 
+  * dexconf: Remove reference to xserver-xorg/config/display/modes,
     which is no longer used.
 
- -- Timo Aaltonen <tepsipakki@ubuntu.com>  Thu, 20 Dec 2007 20:41:15 +0200
+  [ Brice Goglin ]
+  * Fix "no video driver modules found" message, thanks Robert Millan,
+    closes: #453930.
+
+ -- Brice Goglin <bgoglin@debian.org>  Sat, 22 Dec 2007 17:44:30 +0100
 
 xorg (1:7.3+8) unstable; urgency=low
 
diff --git a/debian/xserver-xorg.postinst.in b/debian/xserver-xorg.postinst.in
index 83ac0b4..c04fc05 100644
--- a/debian/xserver-xorg.postinst.in
+++ b/debian/xserver-xorg.postinst.in
@@ -652,8 +652,8 @@ if [ -n "$FIRSTINST" ] || [ -n "$RECONFIGURE" ]; then
           ;;
       esac
 
-      if [ -z "$DRIVER_LIST" ]; then
-        observe "no video driver modules found in $DRIVER_DIRS; defaulting to $DEFAULT_DRIVER"
+      if [ -z "$DRIVER_LIST" ] || [ "$DRIVER_LIST" = " " ]; then
+        warn "no video driver modules found in $DRIVER_DIRS; defaulting to $DEFAULT_DRIVER"
         DRIVER_LIST="$DEFAULT_DRIVER"
       fi
 


Reply to: