summaryrefslogtreecommitdiffstats
path: root/backends/Makefile.objs
diff options
context:
space:
mode:
authorAnthony Liguori2012-06-25 20:13:31 +0200
committerAnthony Liguori2012-11-16 15:36:13 +0100
commit1da2738f5566263177d09c1b9eaf7cbeeb17e815 (patch)
tree43a5e8ef46231913ac66edb90afe584ce5a5aa35 /backends/Makefile.objs
parentrng-random: add an RNG backend that uses /dev/random (v3) (diff)
downloadqemu-1da2738f5566263177d09c1b9eaf7cbeeb17e815.tar.gz
qemu-1da2738f5566263177d09c1b9eaf7cbeeb17e815.tar.xz
qemu-1da2738f5566263177d09c1b9eaf7cbeeb17e815.zip
rng-egd: introduce EGD compliant RNG backend
This backend talks EGD to a CharDriverState. A typical way to invoke this would be: qemu -chardev socket,host=localhost,port=1024,id=chr0 \ -object rng-egd,chardev=chr0,id=egd0 \ -device virtio-rng-pci,rng=egd0 Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'backends/Makefile.objs')
-rw-r--r--backends/Makefile.objs2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/Makefile.objs b/backends/Makefile.objs
index 23ca19b320..875eebce6a 100644
--- a/backends/Makefile.objs
+++ b/backends/Makefile.objs
@@ -1 +1 @@
-common-obj-y += rng.o rng-random.o
+common-obj-y += rng.o rng-random.o rng-egd.o