This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/v4l-utils.git tree:
Subject: gen_keytables.pl: Some keytables have mouse buttons Author: Mauro Carvalho Chehab <[email protected]> Date: Sun Oct 7 22:13:29 2012 -0300 Update the script to not fail when a button is found. Signed-off-by: Mauro Carvalho Chehab <[email protected]> utils/keytable/gen_keytables.pl | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) --- http://git.linuxtv.org/v4l-utils.git?a=commitdiff;h=6ab452c08f9ee87bddf4359ab1feb7969b49d1e1 diff --git a/utils/keytable/gen_keytables.pl b/utils/keytable/gen_keytables.pl index 12f1069..283ecf1 100755 --- a/utils/keytable/gen_keytables.pl +++ b/utils/keytable/gen_keytables.pl @@ -113,8 +113,8 @@ sub parse_file($) } if ($read) { - if (m/(0x[\dA-Fa-f]+)[\s\,]+(KEY_[^\s\,\}]+)/) { - $out .= "$1 $2\n"; + if (m/(0x[\dA-Fa-f]+)[\s\,]+(KEY|BTN)(\_[^\s\,\}]+)/) { + $out .= "$1 $2$3\n"; next; } if (m/\}/) { _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
