From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50833) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1abmvH-0008KW-U0 for qemu-devel@nongnu.org; Fri, 04 Mar 2016 05:25:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1abmvH-0007B7-7q for qemu-devel@nongnu.org; Fri, 04 Mar 2016 05:25:27 -0500 Received: from mx1.redhat.com ([209.132.183.28]:39473) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1abmvH-0007Aq-3Q for qemu-devel@nongnu.org; Fri, 04 Mar 2016 05:25:27 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id B5B923D48D for ; Fri, 4 Mar 2016 10:25:26 +0000 (UTC) From: Gerd Hoffmann Date: Fri, 4 Mar 2016 11:25:13 +0100 Message-Id: <1457087116-4379-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 0/3] input: linux evdev support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, This patch series adds support for reading input events directly from linux input devices instead of getting them from the UI (gtk/spice/...). This is useful if you pci passthrough your vga, because you don't need some otherwise dummy UI just to feed input into your guest. Chech the patch #1 commit message for all the details. It's been a while I posted the patches last time. Undusted them. Rebased to master. Adapted to some QAPI changes. Squashed in some bugfixes accumulated over time. Applied some testing using my new intel test box. please review, Gerd Gerd Hoffmann (3): input: linux evdev support input-linux: add option to toggle grab on all devices input-linux: add switch to enable auto-repeat events include/ui/input.h | 2 + qemu-options.hx | 9 ++ ui/Makefile.objs | 1 + ui/input-linux.c | 391 +++++++++++++++++++++++++++++++++++++++++++++++++++++ vl.c | 11 ++ 5 files changed, 414 insertions(+) create mode 100644 ui/input-linux.c -- 1.8.3.1