diff options
author | Tom Rini <trini@konsulko.com> | 2025-06-28 08:10:43 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-28 08:10:43 -0600 |
commit | 7027b445cc0bfb86204ecb1f1fe596f5895048d9 (patch) | |
tree | f27d6f3425dea4bc984c6fede0e7ce73f5d17917 /lib/efi_loader/efi_bootmgr.c | |
parent | 359e3012921f2fc2d43f3c4e320a752173f82b82 (diff) | |
parent | e80baf06af50a4c8c6f41e9b67f9931f964ced87 (diff) |
Merge tag 'efi-2025-07-rc6' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2025-07-rc6
Documentation:
* Describe usage of U-Boot environment variables in extlinux.conf
UEFI:
* Add missing variable initialization in
efi_bootmgr_update_media_device_boot_option
Diffstat (limited to 'lib/efi_loader/efi_bootmgr.c')
-rw-r--r-- | lib/efi_loader/efi_bootmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_bootmgr.c b/lib/efi_loader/efi_bootmgr.c index 1a3461f5a9d..83f4a3525bd 100644 --- a/lib/efi_loader/efi_bootmgr.c +++ b/lib/efi_loader/efi_bootmgr.c @@ -1133,7 +1133,7 @@ efi_status_t efi_bootmgr_update_media_device_boot_option(void) { u32 i; efi_status_t ret; - efi_uintn_t count, num, total; + efi_uintn_t count, num, total = 0; efi_handle_t *handles = NULL; struct eficonfig_media_boot_option *opt = NULL; |