diff options
author | Heinrich Schuchardt | 2024-04-03 17:33:35 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2024-04-08 13:03:34 +0200 |
commit | e0fa2cf39cedd9297c16bc4ea4ff5c512bb4e0ec (patch) | |
tree | cfd0fe39618a3053d9d46173644d1d963acea0bc /include/efi.h | |
parent | 3b51c3a0b03411b07f0acd8bf2361ba54043fdcf (diff) |
efi_loader: handle EFI_VARIABLE_ENHANCED_AUTHENTICATED_ACCESS
We don't yet support EFI_VARIABLE_ENHANCED_AUTHENTICATED_ACCESS for file
based variables, but we should pass it to TEE based variable stores.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'include/efi.h')
-rw-r--r-- | include/efi.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/efi.h b/include/efi.h index 62cfb993d2e..c3c4b93f860 100644 --- a/include/efi.h +++ b/include/efi.h @@ -507,7 +507,8 @@ extern char _binary_u_boot_bin_start[], _binary_u_boot_bin_end[]; EFI_VARIABLE_HARDWARE_ERROR_RECORD | \ EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS | \ EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS | \ - EFI_VARIABLE_APPEND_WRITE) + EFI_VARIABLE_APPEND_WRITE | \ + EFI_VARIABLE_ENHANCED_AUTHENTICATED_ACCESS) /** * efi_get_priv() - Get access to the EFI-private information |