From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55661) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YyGK6-0001Dk-MR for qemu-devel@nongnu.org; Fri, 29 May 2015 05:11:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YyGK5-0003nz-DB for qemu-devel@nongnu.org; Fri, 29 May 2015 05:11:26 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43603) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YyGK5-0003nr-8F for qemu-devel@nongnu.org; Fri, 29 May 2015 05:11:25 -0400 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id 013A2374A3A for ; Fri, 29 May 2015 09:11:24 +0000 (UTC) From: Gerd Hoffmann Date: Fri, 29 May 2015 11:11:16 +0200 Message-Id: <1432890681-22679-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 0/5] input patch queue. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, Here comes the input patch queue, with the patches for brazilian keyboard support and virtio-input devices (non-pci transport only, virtio-pci support has to wait until virtio-1 lands in master). please pull, Gerd The following changes since commit ce0274f730eacbd24c706523ddbbabb6b95d0659: Revert "gdbstub: Do not kill target in system emulation mode" (2015-05-28 16:57:35 +0100) are available in the git repository at: git://git.kraxel.org/qemu tags/pull-input-20150529-1 for you to fetch changes up to 55a1d80a41032d6133adec041c0096820beaa1b7: virtio-input: emulated devices [device] (2015-05-29 10:30:40 +0200) ---------------------------------------------------------------- kbd: add support for brazilian keyboard (two extra keys). input: add virtio-input devices. ---------------------------------------------------------------- Gerd Hoffmann (5): kbd: add brazil kbd keys to qemu kbd: add brazil kbd keys to x11 evdev map virtio-input: add linux/input.h virtio-input: core code & base class [device] virtio-input: emulated devices [device] hw/input/Makefile.objs | 5 + hw/input/virtio-input-hid.c | 502 +++++++++++++ hw/input/virtio-input.c | 282 ++++++++ include/hw/virtio/virtio-input.h | 105 +++ include/hw/virtio/virtio.h | 1 + include/standard-headers/linux/input.h | 1198 ++++++++++++++++++++++++++++++++ qapi-schema.json | 4 +- scripts/update-linux-headers.sh | 4 +- ui/input-keymap.c | 4 + ui/x_keymap.c | 4 +- 10 files changed, 2105 insertions(+), 4 deletions(-) create mode 100644 hw/input/virtio-input-hid.c create mode 100644 hw/input/virtio-input.c create mode 100644 include/hw/virtio/virtio-input.h create mode 100644 include/standard-headers/linux/input.h