Re: [Qemu-devel] [PATCH 4/8] rng-random: add an RNG backend that uses /dev/random (v2)

2012-10-31 Thread Paolo Bonzini
Il 31/10/2012 00:02, Anthony Liguori ha scritto: > 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 comma

[Qemu-devel] [PATCH 4/8] rng-random: add an RNG backend that uses /dev/random (v2)

2012-10-30 Thread Anthony Liguori
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