mirror of https://github.com/acidanthera/audk.git
OvmfPkg PlatformCI: Support virtio-rng-pci
This patch adds "virtio-rng-pci" to the PlatformBuildLib.py This adds Rng services to the guest VM Cc: Ard Biesheuvel <ardb+tianocore@kernel.org> Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Doug Flick [MSFT] <doug.edk2@gmail.com> Tested-by: Gerd Hoffmann <kraxel@redhat.com> Acked-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
This commit is contained in:
parent
024a291b3e
commit
4f58e0cf99
|
@ -208,6 +208,8 @@ class PlatformBuilder( UefiBuilder, BuildSettingsManager):
|
|||
args += " -net none" # turn off network
|
||||
args += " -smp 4"
|
||||
args += f" -drive file=fat:rw:{VirtualDrive},format=raw,media=disk" # Mount disk with startup.nsh
|
||||
# Provides Rng services to the Guest VM
|
||||
args += " -device virtio-rng-pci"
|
||||
|
||||
if (self.env.GetValue("QEMU_HEADLESS").upper() == "TRUE"):
|
||||
args += " -display none" # no graphics
|
||||
|
|
Loading…
Reference in New Issue