summaryrefslogtreecommitdiff
path: root/cmd/efidebug.c
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2020-09-27 15:50:25 +0300
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2020-09-27 17:10:45 +0300
commit796933510f84c1a29b1ef104d0962db6c0b7589c (patch)
treefb95894d0fb069c4eb8c50d5ea518052d0c724a3 /cmd/efidebug.c
parent1da91d9bcd6e5ef046c1df0d373d0df87b1e8a72 (diff)
downloadu-boot-796933510f84c1a29b1ef104d0962db6c0b7589c.tar.xz
efi_loader: efidebug display RNG protocol
Add the Random Number Generator (RNG) protocol to the GUIDs that the 'efidebug dh' protocol can replace by a text. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'cmd/efidebug.c')
-rw-r--r--cmd/efidebug.c5
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,
},