diff options
author | Tom Rini <trini@konsulko.com> | 2020-09-28 08:26:49 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-09-28 08:26:49 -0400 |
commit | d44d46e9fafaae85b0ebbcdc53999537a199fa2f (patch) | |
tree | 219ad9e33b8755b5188c39d063b097506d6117ff /cmd/efidebug.c | |
parent | 114c0ebcc10b8a0118d388adcb028b89fbde0eff (diff) | |
parent | c48e9f310b950e39a91cea74b6708dd4fe2eb39c (diff) |
Merge tag 'efi-2020-10-rc6' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2020-10-rc6
The following UEFI related issues are fixed:
* restore the global data pointer in the RISC-V trap handler
* install EFI_RNG_PROTOCOL only if we have a random number generator
* display human readable string for EFI_RNG_PROTOCOL in efidebug command
Diffstat (limited to 'cmd/efidebug.c')
-rw-r--r-- | cmd/efidebug.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/efidebug.c b/cmd/efidebug.c index 9874838b00..5288b9920b 100644 --- a/cmd/efidebug.c +++ b/cmd/efidebug.c @@ -9,6 +9,7 @@ #include <common.h> #include <command.h> #include <efi_loader.h> +#include <efi_rng.h> #include <exports.h> #include <hexdump.h> #include <log.h> @@ -249,6 +250,10 @@ static const struct { EFI_LOAD_FILE2_PROTOCOL_GUID, }, { + "Random Number Generator", + EFI_RNG_PROTOCOL_GUID, + }, + { "Simple Network", EFI_SIMPLE_NETWORK_PROTOCOL_GUID, }, |