summaryrefslogtreecommitdiffstats
path: root/rules/evtest.in
diff options
context:
space:
mode:
authorJuergen Beisert <jbe@pengutronix.de>2011-04-16 19:29:06 +0200
committerJuergen Beisert <jbe@pengutronix.de>2011-04-16 19:29:06 +0200
commit418d10347b550912d5d182cfe97c48df6324fc53 (patch)
tree03f41527dcadb0f6e7d0244cd44e6575ce946dd5 /rules/evtest.in
parent9ff1a048bfc59faf74d6a507be43eddaba3ac35a (diff)
downloadptxdist-418d10347b550912d5d182cfe97c48df6324fc53.tar.gz
ptxdist-418d10347b550912d5d182cfe97c48df6324fc53.tar.xz
Provide a useful debugging tool for the linux's input event system
'evtest' is a simple, nice and helpful tool to get information about events related to the kernel's input system. Especially to debug bogus touchscreen drivers it is very handy. Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
Diffstat (limited to 'rules/evtest.in')
-rw-r--r--rules/evtest.in33
1 files changed, 33 insertions, 0 deletions
diff --git a/rules/evtest.in b/rules/evtest.in
new file mode 100644
index 000000000..dd4b98ff1
--- /dev/null
+++ b/rules/evtest.in
@@ -0,0 +1,33 @@
+## SECTION=test_suites
+
+menuconfig EVTEST
+ tristate
+ prompt "evtest "
+ select LIBXML2 if EVTEST_CAPTURE
+ help
+ Simple tool for Linux's input event debugging
+
+if EVTEST
+
+comment "Installation Options"
+
+config EVTEST_EVTEST
+ bool
+ prompt "evtest"
+ default y
+ help
+ Install the 'evtest' tool
+
+config EVTEST_CAPTURE
+ bool
+ prompt "evtest-capture"
+ help
+ 'evtest-capture' captures the information and events from the input
+ device specified on the command line and writes it to a xml file.
+ Together with with evtest-create-device.xsl, a simple uinput-based
+ software input device can be created that replays the events as if
+ the same input was performed on the physical device. This can be
+ useful to replicate bugs with input devices in upper layers of the
+ stack.Install the 'evtest-capture' tool (Note: requires libXML2).
+
+endif