From 796933510f84c1a29b1ef104d0962db6c0b7589c Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Sun, 27 Sep 2020 14:50:25 +0200 Subject: [PATCH] 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 --- cmd/efidebug.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmd/efidebug.c b/cmd/efidebug.c index 9874838..5288b99 100644 --- a/cmd/efidebug.c +++ b/cmd/efidebug.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include #include @@ -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, }, -- 2.7.4