diff options
author | Tom Rini <trini@konsulko.com> | 2020-11-09 15:48:50 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-11-09 15:48:50 -0500 |
commit | b3f48734384aab649422d789447aa8a12d4eb716 (patch) | |
tree | b91282bbc88ad9f8e4272608077500fd61b447bf /lib/efi_loader/efi_variable.c | |
parent | 74f11b55df961170223d22e0daea13b095013514 (diff) | |
parent | a322f54f50cfb2e8e7a68968c060b2fd3dbd934d (diff) |
Merge tag 'efi-2021-01-rc2-2' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2021-01-rc2 (2)
The following bugs are fixed:
* The conitrace command failed to build.
* Non-volatile UEFI variables were not delete form the file store.
The following features are added:
* Support for the FN1 - FN10 keys on crosswire keyboards is added.
* An EFI binary is provided to dump the binary device tree.
tpm2_get_capability() is adjusted in preparation of the implementation
of the EFI_TCG2_PROTOCOL.
Diffstat (limited to 'lib/efi_loader/efi_variable.c')
-rw-r--r-- | lib/efi_loader/efi_variable.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/efi_loader/efi_variable.c b/lib/efi_loader/efi_variable.c index a10b9caa8b0..0c689cfb470 100644 --- a/lib/efi_loader/efi_variable.c +++ b/lib/efi_loader/efi_variable.c @@ -393,6 +393,7 @@ efi_status_t efi_set_variable_int(u16 *variable_name, const efi_guid_t *vendor, if (delete) { /* EFI_NOT_FOUND has been handled before */ + attributes = var->attr; ret = EFI_SUCCESS; } else if (append) { u16 *old_data = var->name; |