From 5c74521d249486fa3e749dbbf6d56a70d4d7235f Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Mon, 25 Jun 2012 10:34:09 -0500 Subject: rng-random: add an RNG backend that uses /dev/random (v3) The filename can be overridden but it expects a non-blocking source of entropy. A typical invocation would be: qemu -object rng-random,id=rng0 -device virtio-rng-pci,rng=rng0 This can also be used with /dev/urandom by using the command line: qemu -object rng-random,filename=/dev/urandom,id=rng0 \ -device virtio-rng-pci,rng=rng0 Signed-off-by: Anthony Liguori --- v1 -> v2 - merged header split patch into this one v2 -> v3 - bug fix in rng-random (Paolo) --- backends/Makefile.objs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backends/Makefile.objs') diff --git a/backends/Makefile.objs b/backends/Makefile.objs index 06e08c7..23ca19b 100644 --- a/backends/Makefile.objs +++ b/backends/Makefile.objs @@ -1 +1 @@ -common-obj-y += rng.o +common-obj-y += rng.o rng-random.o -- cgit v1.1