xserver-kdrive: Add keyboard fix (partially from OE.dev

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie
2010-02-11 16:06:46 +00:00
parent 6054d36e7a
commit e49fcdcc8b
3 changed files with 32 additions and 3 deletions

View File

@@ -0,0 +1,25 @@
Index: xorg-server-1.4/hw/kdrive/linux/keyboard.c
===================================================================
--- xorg-server-1.4.orig/hw/kdrive/linux/keyboard.c 2007-09-29 18:31:15.000000000 +0200
+++ xorg-server-1.4/hw/kdrive/linux/keyboard.c 2007-09-29 18:33:02.000000000 +0200
@@ -486,6 +486,8 @@
ki->minScanCode = minKeyCode;
ki->maxScanCode = maxKeyCode;
#endif
+ ki->minScanCode = 0;
+ ki->maxScanCode = NR_KEYS;
}
/*
@@ -743,11 +743,6 @@
cfsetispeed(&nTty, 9600);
cfsetospeed(&nTty, 9600);
tcsetattr(fd, TCSANOW, &nTty);
- /*
- * Flush any pending keystrokes
- */
- while ((n = read (fd, buf, sizeof (buf))) > 0)
- ;
KdRegisterFd (fd, LinuxKeyboardRead, ki);
return Success;
}

View File

@@ -7,7 +7,7 @@ RDEPENDS_${PN} += "xkeyboard-config"
EXTRA_OECONF += "--disable-glx"
PE = "1"
PR = "r23"
PR = "r24"
SRC_URI = "${XORG_MIRROR}/individual/xserver/xorg-server-${PV}.tar.bz2 \
file://extra-kmodes.patch;patch=1 \
@@ -16,12 +16,12 @@ SRC_URI = "${XORG_MIRROR}/individual/xserver/xorg-server-${PV}.tar.bz2 \
# file://kdrive-evdev.patch;patch=1 \
# file://kdrive-use-evdev.patch;patch=1 \
# file://enable-builtin-fonts.patch;patch=1 \
# file://disable-xf86-dga-xorgcfg.patch;patch=1 \
# file://optional-xkb.patch;patch=1 \
file://keyboard-resume-workaround.patch;patch=1 \
file://enable-xcalibrate.patch;patch=1 \
file://hide-cursor-and-ppm-root.patch;patch=1 \
file://fbdev_xrandr_ioctl.patch;patch=1 \
file://fix-newer-xorg-headers.patch;patch=1 \
file://crosscompile.patch;patch=1"
file://crosscompile.patch;patch=1"
S = "${WORKDIR}/xorg-server-${PV}"

View File

@@ -0,0 +1,4 @@
require xserver-xf86-lite.inc
SRC_URI += "file://nodolt.patch;patch=1 \
file://crosscompile.patch;patch=1"