From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43105) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ada2v-0007h8-Kr for qemu-devel@nongnu.org; Wed, 09 Mar 2016 04:04:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ada2s-00076h-Bf for qemu-devel@nongnu.org; Wed, 09 Mar 2016 04:04:44 -0500 Received: from mx1.redhat.com ([209.132.183.28]:44774) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ada2s-00075m-6K for qemu-devel@nongnu.org; Wed, 09 Mar 2016 04:04:42 -0500 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id A1CE5486B9 for ; Wed, 9 Mar 2016 09:04:40 +0000 (UTC) From: Gerd Hoffmann Date: Wed, 9 Mar 2016 10:04:32 +0100 Message-Id: <1457514277-32408-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 0/5] ui: add linux evdev support, vnc and console fixes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, Here is the ui patch queue, bringing support for linux input devices and two fixes for the console and vnc. please pull, Gerd The following changes since commit 1464ad45cd6cdeb0b5c1a54d3d3791396e47e52f: Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2016-03-04' into staging (2016-03-06 11:53:27 +0000) are available in the git repository at: git://git.kraxel.org/qemu tags/pull-ui-20160309-1 for you to fetch changes up to 58aa7d8e443c7f79710a4f5757966f6c511f2242: ui/console: add escape sequence \e[5, 6n (2016-03-09 09:35:56 +0100) ---------------------------------------------------------------- add linux evdev support, vnc and console fixes. ---------------------------------------------------------------- Frediano Ziglio (1): vnc: send cursor when a new client is connecting 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 Ren Kimura (1): ui/console: add escape sequence \e[5, 6n include/ui/input.h | 2 + qemu-options.hx | 9 ++ ui/Makefile.objs | 1 + ui/console.c | 56 ++++++-- ui/input-linux.c | 391 +++++++++++++++++++++++++++++++++++++++++++++++++++++ ui/vnc.c | 3 + vl.c | 11 ++ 7 files changed, 458 insertions(+), 15 deletions(-) create mode 100644 ui/input-linux.c