nixos/qemu: Add virtio-rng-pci to test-driver

Otherwise AArch64 KVM guests don't have enough entropy at boot.
This commit is contained in:
Tuomas Tynkkynen 2017-11-24 14:45:24 +02:00
parent e56da6a464
commit 8762490337

View file

@ -146,6 +146,7 @@ sub start {
($self->{allowReboot} ? "" : "-no-reboot ") .
"-monitor unix:./monitor -chardev socket,id=shell,path=./shell " .
"-device virtio-serial -device virtconsole,chardev=shell " .
"-device virtio-rng-pci " .
($showGraphics ? "-serial stdio" : "-nographic") . " " . ($ENV{QEMU_OPTS} || "");
chdir $self->{stateDir} or die;
exec $self->{startCommand};