diff options
author | Jose Marinho | 2021-12-23 14:51:07 +0000 |
---|---|---|
committer | Heinrich Schuchardt | 2022-09-03 09:35:48 +0200 |
commit | 6b92c1735205eef308a9e33ec90330a3e6d27fc3 (patch) | |
tree | 002f171fa16a21af8ac0b938d804da7f3c2c946a /include/efi_loader.h | |
parent | 2b7a6e013fe9c4f8c8ed29d79f6757f8c482dc72 (diff) |
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 'include/efi_loader.h')
-rw-r--r-- | include/efi_loader.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 9611aec2deb..545ba06d946 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -1053,6 +1053,13 @@ extern u8 num_image_type_guids; efi_status_t efi_esrt_register(void); /** + * efi_ecpt_register() - Install the ECPT system table. + * + * Return: status code + */ +efi_status_t efi_ecpt_register(void); + +/** * efi_esrt_populate() - Populates the ESRT entries from the FMP instances * present in the system. * If an ESRT already exists, the old ESRT is replaced in the system table. |