diff options
author | Tom Rini <trini@konsulko.com> | 2023-06-08 11:19:27 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-06-08 11:19:27 -0400 |
commit | 3aa4fb12f4abd31bce7fe6294dd47fd0966a791a (patch) | |
tree | 822ad0a8d6e6405df9c444f49ad7c57ecbf7a732 /include/efi_loader.h | |
parent | ac6096fe9c4d99f1dc37db95f213e08a48b11e70 (diff) | |
parent | b6f954e5b09545d18a150e4a4431a648e41ff287 (diff) |
Merge tag 'efi-next-20230608' of https://source.denx.de/u-boot/custodians/u-boot-efi into next
Pull request efi-next-20230608
UEFI:
* Support for firmware versions in capsule updates
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r-- | include/efi_loader.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index b395eef9e7..941d63467c 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -1078,15 +1078,16 @@ struct efi_fw_image { * platforms which enable capsule updates * * @dfu_string: String used to populate dfu_alt_info + * @num_images: The number of images array entries * @images: Pointer to an array of updatable images */ struct efi_capsule_update_info { const char *dfu_string; + int num_images; struct efi_fw_image *images; }; extern struct efi_capsule_update_info update_info; -extern u8 num_image_type_guids; /** * Install the ESRT system table. |