xorg.conf: update keyboard config with evdev

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

Fix [YOCTO #1108]

(From OE-Core rev: 729999cb384978404ecdfa8ea4ae0eb831fb9ece)

Signed-off-by: Yu Ke <ke.yu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Yu Ke 2011-05-27 15:40:59 +08:00 committed by Richard Purdie
parent 6015a10899
commit b8b479e76a
3 changed files with 7 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -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"