2012-11-17 14:40:47 +01:00
|
|
|
common-obj-y += rng.o rng-egd.o
|
|
|
|
common-obj-$(CONFIG_POSIX) += rng-random.o
|
2013-02-03 20:21:00 +01:00
|
|
|
|
backends: Introduce chr-testdev
From: Paolo Bonzini <pbonzini@redhat.com>
chr-testdev enables a virtio serial channel to be used for guest
initiated qemu exits. hw/misc/debugexit already enables guest
initiated qemu exits, but only for PC targets. chr-testdev supports
any virtio-capable target. kvm-unit-tests/arm is already making use
of this backend.
Currently there is a single command implemented, "q". It takes a
(prefix) argument for the exit code, thus an exit is implemented by
writing, e.g. "1q", to the virtio-serial port.
It can be used as:
$QEMU ... \
-device virtio-serial-device \
-device virtserialport,chardev=ctd -chardev testdev,id=ctd
or, use:
$QEMU ... \
-device virtio-serial-device \
-device virtconsole,chardev=ctd -chardev testdev,id=ctd
to bind it to virtio-serial port0.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Andrew Jones <drjones@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2014-07-11 09:44:26 +02:00
|
|
|
common-obj-y += msmouse.o testdev.o
|
2013-02-03 20:21:00 +01:00
|
|
|
common-obj-$(CONFIG_BRLAPI) += baum.o
|
2014-05-02 13:40:53 +02:00
|
|
|
baum.o-cflags := $(SDL_CFLAGS)
|
2013-03-28 12:26:21 +01:00
|
|
|
|
|
|
|
common-obj-$(CONFIG_TPM) += tpm.o
|
2014-06-06 17:54:29 +02:00
|
|
|
|
|
|
|
common-obj-y += hostmem.o hostmem-ram.o
|
2014-06-10 13:15:21 +02:00
|
|
|
common-obj-$(CONFIG_LINUX) += hostmem-file.o
|