[oe] [RFC] tslib: relax EV_VERSION check as 2.6.37 has slightly newer EV_VERSION, but works ok without tslib changes

Martin Jansa martin.jansa at gmail.com
Wed Jan 12 13:49:03 UTC 2011


---
 ...RSION-check-fail-only-if-version-of-runni.patch |   25 ++++++++++++++++++++
 recipes/tslib/tslib_git.bb                         |    5 ++-
 2 files changed, 28 insertions(+), 2 deletions(-)
 create mode 100644 recipes/tslib/tslib/0001-relax-EV_VERSION-check-fail-only-if-version-of-runni.patch

diff --git a/recipes/tslib/tslib/0001-relax-EV_VERSION-check-fail-only-if-version-of-runni.patch b/recipes/tslib/tslib/0001-relax-EV_VERSION-check-fail-only-if-version-of-runni.patch
new file mode 100644
index 0000000..2ff1e0a
--- /dev/null
+++ b/recipes/tslib/tslib/0001-relax-EV_VERSION-check-fail-only-if-version-of-runni.patch
@@ -0,0 +1,25 @@
+From cdf285aa7cbcc7de9ad5a8bf4c053372153f4242 Mon Sep 17 00:00:00 2001
+From: Martin Jansa <Martin.Jansa at gmail.com>
+Date: Wed, 12 Jan 2011 14:36:35 +0100
+Subject: [PATCH] relax EV_VERSION check, fail only if version of running kernel is lower than EV_VERSION from kernel headers
+
+---
+ plugins/input-raw.c |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/plugins/input-raw.c b/plugins/input-raw.c
+index 9511a0d..4396eab 100644
+--- a/plugins/input-raw.c
++++ b/plugins/input-raw.c
+@@ -78,7 +78,7 @@ static int check_fd(struct tslib_input *i)
+ 		return -1;
+ 	}
+ 
+-	if (version != EV_VERSION) {
++	if (version < EV_VERSION) {
+ 		fprintf(stderr, "tslib: Selected device uses a different version of the event protocol than tslib was compiled for\n");
+ 		return -1;
+ 	}
+-- 
+1.7.4.rc1
+
diff --git a/recipes/tslib/tslib_git.bb b/recipes/tslib/tslib_git.bb
index 7c37395..74e17c3 100644
--- a/recipes/tslib/tslib_git.bb
+++ b/recipes/tslib/tslib_git.bb
@@ -1,8 +1,9 @@
-SRC_URI = "git://github.com/kergoth/tslib.git;protocol=git"
+SRC_URI = "git://github.com/kergoth/tslib.git;protocol=git \
+           file://0001-relax-EV_VERSION-check-fail-only-if-version-of-runni.patch"
 S = "${WORKDIR}/git"
 SRCREV = "860d69cadedef0dec8ba6259ab5850691d3402e7"
 PV = "1.0+gitr${SRCPV}"
-PR = "${INC_PR}.4"
+PR = "${INC_PR}.5"
 
 DEFAULT_PREFERENCE = "-1"
 
-- 
1.7.4.rc1





More information about the Openembedded-devel mailing list