diff options
author | Tom Rini <trini@konsulko.com> | 2020-06-06 10:59:55 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-06-06 10:59:55 -0400 |
commit | 62005e20832135bda2d7539a29f7d2e9026f590a (patch) | |
tree | 3b6fefeea5c1c0a8bdbc36218ae55daa6353b93e /drivers | |
parent | 88bd5b1793600b0f5f25c3d236b4d049fb986140 (diff) | |
parent | 325567d3c59fba32bdbf33a8ec981a8ccb096780 (diff) |
Merge tag 'efi-2020-07-rc4-2' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2020-07-rc4 (2)
The following problems are resolved:
* When booting via UEFI an SMBIOS table is presented to the operating
system. If U-Boot tries to add an empty string, this results in corrupted
SMBIOS information. We will now use "Unknown" as property value.
* The EFI_RNG_PROTOCOL uses the DM_RNG drivers. For the virtio RNG driver
the missing DM_RNG Kconfig dependency is added.
* Missing function descriptions for the EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL are
added.
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/virtio/Kconfig | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig index 2e3dd3bad0..e800720657 100644 --- a/drivers/virtio/Kconfig +++ b/drivers/virtio/Kconfig @@ -60,9 +60,11 @@ config VIRTIO_BLK QEMU based targets. config VIRTIO_RNG - bool "virtio rng driver" - depends on VIRTIO - help - This is the virtual random number generator driver. It can be used - with Qemu based targets. + bool "virtio rng driver" + depends on DM_RNG + depends on VIRTIO + default y + help + This is the virtual random number generator driver. It can be used + with QEMU based targets. endmenu |