diff options
| author | Simon Glass <[email protected]> | 2023-03-20 08:30:12 +1300 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2023-03-25 11:07:22 +0100 |
| commit | 4e5e49a3c7108c07a739c1f3fbd865e67fbef868 (patch) | |
| tree | 93c87e475c8e301f5ef46deefbd0a121e2564002 /lib | |
| parent | ac93275d79f85a169006a07e6a669b78970f381d (diff) | |
efi: Include GUID names with EFI app and payload
These are currently only available when running with EFI_LOADER.
Expand this to include the app and payload, since it is useful to be
able to decode things there.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/uuid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/uuid.c b/lib/uuid.c index 5ea30a66f5d..96e1af3c8b0 100644 --- a/lib/uuid.c +++ b/lib/uuid.c @@ -102,7 +102,7 @@ static const struct { {"lvm", PARTITION_LINUX_LVM_GUID}, {"u-boot-env", PARTITION_U_BOOT_ENVIRONMENT}, #endif -#ifdef CONFIG_CMD_EFIDEBUG +#if defined(CONFIG_CMD_EFIDEBUG) || defined(CONFIG_EFI) { "Device Path", EFI_DEVICE_PATH_PROTOCOL_GUID, |
