diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2021-02-02 17:53:14 +0100 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2021-02-04 20:09:02 +0100 |
commit | b9b0ea30c70bf37cc172604c67e6e9c5548870c1 (patch) | |
tree | f88ef75c8c226b889cf5e3c12a1c1d64be991086 /cmd | |
parent | 1bc9fc3483ece303ad7181ea024312248d8ce928 (diff) | |
download | u-boot-b9b0ea30c70bf37cc172604c67e6e9c5548870c1.tar.gz u-boot-b9b0ea30c70bf37cc172604c67e6e9c5548870c1.tar.bz2 u-boot-b9b0ea30c70bf37cc172604c67e6e9c5548870c1.zip |
efi_loader: install UEFI System Partition GUID
On the handle for the UEFI System Partition we must install the System
Partition GUID (with a NULL interface).
Let the efidebug command display the GUID.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'cmd')
-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 83bc2196a5..bbbcb0a546 100644 --- a/cmd/efidebug.c +++ b/cmd/efidebug.c @@ -16,6 +16,7 @@ #include <log.h> #include <malloc.h> #include <mapmem.h> +#include <part.h> #include <search.h> #include <linux/ctype.h> @@ -502,6 +503,10 @@ static const struct { "Device-Tree Fixup", EFI_DT_FIXUP_PROTOCOL_GUID, }, + { + "System Partition", + PARTITION_SYSTEM_GUID + }, /* Configuration table GUIDs */ { "ACPI table", |