diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2014-03-14 14:39:20 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2015-05-29 10:30:26 +0200 |
commit | f73ddbad397f98c1d476ffbf93d65af1cfa796e6 (patch) | |
tree | aa60c4104d0c821f456d5c18381b12c5115b620e /hw/input/Makefile.objs | |
parent | 2fe7c31832a345cdc34314cdcd5478d06b884842 (diff) | |
download | qemu-f73ddbad397f98c1d476ffbf93d65af1cfa796e6.zip qemu-f73ddbad397f98c1d476ffbf93d65af1cfa796e6.tar.gz qemu-f73ddbad397f98c1d476ffbf93d65af1cfa796e6.tar.bz2 |
virtio-input: core code & base class [device]
This patch adds virtio-input support to qemu. It brings a abstract
base class providing core support, other classes can build on it to
actually implement input devices.
virtio-input basically sends linux input layer events (evdev) over
virtio.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/input/Makefile.objs')
-rw-r--r-- | hw/input/Makefile.objs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hw/input/Makefile.objs b/hw/input/Makefile.objs index e8c80b9..ee8bba9 100644 --- a/hw/input/Makefile.objs +++ b/hw/input/Makefile.objs @@ -8,6 +8,10 @@ common-obj-$(CONFIG_STELLARIS_INPUT) += stellaris_input.o common-obj-$(CONFIG_TSC2005) += tsc2005.o common-obj-$(CONFIG_VMMOUSE) += vmmouse.o +ifeq ($(CONFIG_LINUX),y) +common-obj-$(CONFIG_VIRTIO) += virtio-input.o +endif + obj-$(CONFIG_MILKYMIST) += milkymist-softusb.o obj-$(CONFIG_PXA2XX) += pxa2xx_keypad.o obj-$(CONFIG_TSC210X) += tsc210x.o |