All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] use evdev driver for keyboard, fix bug 1108
@ 2011-05-27  8:14 Yu Ke
  2011-05-27  8:14 ` [PATCH 1/1] xorg.conf: update keyboard config with evdev Yu Ke
  0 siblings, 1 reply; 3+ messages in thread
From: Yu Ke @ 2011-05-27  8:14 UTC (permalink / raw)
  To: poky, richard.purdie; +Cc: Darren Hart

This patch update the xorg.conf for qemux86 and qemux86-64 to make keybaord
back to work in X.

The BSP xorg.conf may also need update accoringly, the main difference with
qemux86 may be the Option "Device". it can be checked in /dev/input/

CC: Darren Hart <dvhart@linux.intel.com>
CC: Zanussi Tom <tom.zanussi@intel.com>

The following changes since commit 32a4e746273c3c7d3dd0f13b745bc0679cadaa44:
  Otavio Salvador (1):
        codeparser.py: fix syntax error in exception handling

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib kyu3/bug-1108-x-keyboard
  http://git.pokylinux.org/cgit.cgi//log/?h=kyu3/bug-1108-x-keyboard

Yu Ke (1):
  xorg.conf: update keyboard config with evdev

 .../xserver-xf86-config/qemux86-64/xorg.conf       |    5 +++--
 .../xserver-xf86-config/qemux86/xorg.conf          |    5 +++--
 .../xorg-xserver/xserver-xf86-config_0.1.bb        |    2 +-
 3 files changed, 7 insertions(+), 5 deletions(-)



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/1] xorg.conf: update keyboard config with evdev
  2011-05-27  8:14 [PATCH 0/1] use evdev driver for keyboard, fix bug 1108 Yu Ke
@ 2011-05-27  8:14 ` Yu Ke
  2011-05-27 12:22   ` Richard Purdie
  0 siblings, 1 reply; 3+ messages in thread
From: Yu Ke @ 2011-05-27  8:14 UTC (permalink / raw)
  To: poky, richard.purdie

with xserver 1.10, the evdev driver is used by default, so update the
keyboard config entry in xorg.conf accordingly.

Fix [YOCTO #1108]

Signed-off-by: Yu Ke <ke.yu@intel.com>
---
 .../xserver-xf86-config/qemux86-64/xorg.conf       |    5 +++--
 .../xserver-xf86-config/qemux86/xorg.conf          |    5 +++--
 .../xorg-xserver/xserver-xf86-config_0.1.bb        |    2 +-
 3 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf
index 4216de7..10a6d9a 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf
@@ -4,10 +4,11 @@ EndSection
 
 Section "InputDevice"
     Identifier    "Generic Keyboard"
-    Driver        "kbd"
+    Driver        "evdev"
     Option        "CoreKeyboard"
+    Option        "Device"      "/dev/input/by-path/platform-i8042-serio-0-event-kbd"
     Option        "XkbRules"    "xorg"
-    Option        "XkbModel"    "pc105"
+    Option        "XkbModel"    "evdev"
     Option        "XkbLayout"    "us"
 EndSection
 
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf
index 4216de7..10a6d9a 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf
@@ -4,10 +4,11 @@ EndSection
 
 Section "InputDevice"
     Identifier    "Generic Keyboard"
-    Driver        "kbd"
+    Driver        "evdev"
     Option        "CoreKeyboard"
+    Option        "Device"      "/dev/input/by-path/platform-i8042-serio-0-event-kbd"
     Option        "XkbRules"    "xorg"
-    Option        "XkbModel"    "pc105"
+    Option        "XkbModel"    "evdev"
     Option        "XkbLayout"    "us"
 EndSection
 
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb
index 035a462..970b4bd 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.x.org"
 SECTION = "x11/base"
 LICENSE = "MIT-X"
 LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
-PR = "r9"
+PR = "r10"
 
 SRC_URI = "file://xorg.conf"
 
-- 
1.7.0.4



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/1] xorg.conf: update keyboard config with evdev
  2011-05-27  8:14 ` [PATCH 1/1] xorg.conf: update keyboard config with evdev Yu Ke
@ 2011-05-27 12:22   ` Richard Purdie
  0 siblings, 0 replies; 3+ messages in thread
From: Richard Purdie @ 2011-05-27 12:22 UTC (permalink / raw)
  To: Yu Ke; +Cc: poky

On Fri, 2011-05-27 at 16:14 +0800, Yu Ke wrote:
> with xserver 1.10, the evdev driver is used by default, so update the
> keyboard config entry in xorg.conf accordingly.
> 
> Fix [YOCTO #1108]
> 
> Signed-off-by: Yu Ke <ke.yu@intel.com>
> ---
>  .../xserver-xf86-config/qemux86-64/xorg.conf       |    5 +++--
>  .../xserver-xf86-config/qemux86/xorg.conf          |    5 +++--
>  .../xorg-xserver/xserver-xf86-config_0.1.bb        |    2 +-
>  3 files changed, 7 insertions(+), 5 deletions(-)

Merged to master, thanks.

Richard



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-05-27 12:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-27  8:14 [PATCH 0/1] use evdev driver for keyboard, fix bug 1108 Yu Ke
2011-05-27  8:14 ` [PATCH 1/1] xorg.conf: update keyboard config with evdev Yu Ke
2011-05-27 12:22   ` Richard Purdie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.