mbox

[PULL,0/5] input patch queue.

Message ID 1432890681-22679-1-git-send-email-kraxel@redhat.com
State New
Headers show

Pull-request

git://git.kraxel.org/qemu tags/pull-input-20150529-1

Message

Gerd Hoffmann May 29, 2015, 9:11 a.m. UTC
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

Comments

Peter Maydell May 29, 2015, 1:24 p.m. UTC | #1
On 29 May 2015 at 10:11, Gerd Hoffmann <kraxel@redhat.com> wrote:
>   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.

Applied, thanks.

-- PMM