diff options
author | Jose Marinho <jose.marinho@arm.com> | 2021-12-23 14:51:07 +0000 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-09-03 09:35:48 +0200 |
commit | 6b92c1735205eef308a9e33ec90330a3e6d27fc3 (patch) | |
tree | 002f171fa16a21af8ac0b938d804da7f3c2c946a /lib/uuid.c | |
parent | 2b7a6e013fe9c4f8c8ed29d79f6757f8c482dc72 (diff) | |
download | u-boot-6b92c1735205eef308a9e33ec90330a3e6d27fc3.tar.gz u-boot-6b92c1735205eef308a9e33ec90330a3e6d27fc3.tar.bz2 u-boot-6b92c1735205eef308a9e33ec90330a3e6d27fc3.zip |
efi: Create ECPT table
The ECPT table will be included in the UEFI specification 2.9+.
The ECPT table was introduced in UEFI following the code-first path. The
acceptance ticket can be viewed at:
https://bugzilla.tianocore.org/show_bug.cgi?id=3591
The Conformance Profiles table is a UEFI configuration table that contains
GUID of the UEFI profiles that the UEFI implementation conforms with.
The ECPT table is created when CONFIG_EFI_ECPT=y.
The config is set by default.
Signed-off-by: Jose Marinho <jose.marinho@arm.com>
Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'lib/uuid.c')
-rw-r--r-- | lib/uuid.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/uuid.c b/lib/uuid.c index 284f8113ff..465e1ac38f 100644 --- a/lib/uuid.c +++ b/lib/uuid.c @@ -220,6 +220,10 @@ static const struct { "TCG2 Final Events Table", EFI_TCG2_FINAL_EVENTS_TABLE_GUID, }, + { + "EFI Conformance Profiles Table", + EFI_CONFORMANCE_PROFILES_TABLE_GUID, + }, #ifdef CONFIG_EFI_RISCV_BOOT_PROTOCOL { "RISC-V Boot", |