2013-03-01 13:59:19 +01:00
|
|
|
common-obj-$(CONFIG_ADB) += adb.o
|
|
|
|
common-obj-y += hid.o
|
|
|
|
common-obj-$(CONFIG_LM832X) += lm832x.o
|
|
|
|
common-obj-$(CONFIG_PCKBD) += pckbd.o
|
|
|
|
common-obj-$(CONFIG_PL050) += pl050.o
|
|
|
|
common-obj-y += ps2.o
|
|
|
|
common-obj-$(CONFIG_STELLARIS_INPUT) += stellaris_input.o
|
|
|
|
common-obj-$(CONFIG_TSC2005) += tsc2005.o
|
|
|
|
common-obj-$(CONFIG_VMMOUSE) += vmmouse.o
|
2013-02-05 14:38:25 +01:00
|
|
|
|
2014-03-14 14:39:20 +01:00
|
|
|
common-obj-$(CONFIG_VIRTIO) += virtio-input.o
|
2014-04-01 10:06:29 +02:00
|
|
|
common-obj-$(CONFIG_VIRTIO) += virtio-input-hid.o
|
virtio-input: Fix device introspection on non-Linux hosts
When CONFIG_LINUX is off, devices "virtio-keyboard-device",
"virtio-mouse-device", "virtio-tablet-device" and
"virtio-input-host-device" aren't compiled in, yet
"virtio-keyboard-pci", "virtio-mouse-pci", "virtio-tablet-pci" and
"virtio-input-host-pci" still are. Attempts to introspect them crash,
e.g.
$ qemu-system-x86_64 -device virtio-tablet-pci,help
**
ERROR:/work/armbru/qemu/qom/object.c:333:object_initialize_with_type: assertion failed: (type != NULL)
Broken in commit 710e2d9 and commit 006a5ed.
Fix by compiling the "virtio-FOO-pci" exactly when compiling the
"virtio-FOO-device": compile "virtio-keyboard-device",
"virtio-mouse-device", "virtio-tablet-device" regardless of
CONFIG_LINUX, and compile "virtio-input-host-pci" only for
CONFIG_LINUX.
Reported-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
Message-Id: <1444320700-26260-3-git-send-email-armbru@redhat.com>
2015-10-08 18:11:40 +02:00
|
|
|
ifeq ($(CONFIG_LINUX),y)
|
2014-03-28 09:18:47 +01:00
|
|
|
common-obj-$(CONFIG_VIRTIO) += virtio-input-host.o
|
2014-03-14 14:39:20 +01:00
|
|
|
endif
|
|
|
|
|
2013-02-05 14:38:25 +01:00
|
|
|
obj-$(CONFIG_MILKYMIST) += milkymist-softusb.o
|
|
|
|
obj-$(CONFIG_PXA2XX) += pxa2xx_keypad.o
|
|
|
|
obj-$(CONFIG_TSC210X) += tsc210x.o
|