summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2020-09-27 14:50:25 +0200
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2020-09-27 16:10:45 +0200
commit796933510f84c1a29b1ef104d0962db6c0b7589c (patch)
treefb95894d0fb069c4eb8c50d5ea518052d0c724a3 /cmd
parent1da91d9bcd6e5ef046c1df0d373d0df87b1e8a72 (diff)
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')
-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,
},