[oe-commits] Denis 'GNUtoo' Carikli : xserver-xorg-conf : fix AllowEmptyInput problem for eee701 and bump PR

git version control git at git.openembedded.org
Sun Mar 7 19:46:07 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: fdd1165ca6c6e415b7eca5e90a3667b7341d7205
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=fdd1165ca6c6e415b7eca5e90a3667b7341d7205

Author: Denis 'GNUtoo' Carikli <GNUtoo at no-log.org>
Date:   Sun Mar  7 20:26:27 2010 +0100

xserver-xorg-conf : fix AllowEmptyInput problem for eee701 and bump PR

In newer Xorg versions AllowEmptyInput is on by default,
  And that appear in Xorg.0.log of the eee701 machine:
   (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
   (WW) Disabling Keyboard
   (WW) Disabling Mouse
  With the mouse disabled as result.

  Option         "AllowEmptyInput"        "false"
in ServerLayout Section fixes the problem

---

 .../xserver-xorg-conf/eee701/xorg.conf             |    1 +
 recipes/xorg-xserver/xserver-xorg-conf_0.1.bb      |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/recipes/xorg-xserver/xserver-xorg-conf/eee701/xorg.conf b/recipes/xorg-xserver/xserver-xorg-conf/eee701/xorg.conf
index 8eb78bc..4ee293b 100644
--- a/recipes/xorg-xserver/xserver-xorg-conf/eee701/xorg.conf
+++ b/recipes/xorg-xserver/xserver-xorg-conf/eee701/xorg.conf
@@ -4,6 +4,7 @@ Section "ServerLayout"
 	InputDevice    "Touchpad" 
 	InputDevice    "Keyboard"
 	InputDevice    "Mouse"
+	Option         "AllowEmptyInput"        "false"
 EndSection
 
 Section "Files"
diff --git a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
index ad8bcb4..617eee6 100644
--- a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
+++ b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
@@ -1,5 +1,5 @@
 DESCRIPTION = "Machine specific xorg.conf files"
-PR = "r19"
+PR = "r20"
 
 SRC_URI = "file://xorg.conf"
 





More information about the Openembedded-commits mailing list