diff options
author | Tom Rini <trini@konsulko.com> | 2024-04-20 08:19:20 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-04-20 08:19:20 -0600 |
commit | b064bb66a10c850e231c7a124b90c8a26f99bd88 (patch) | |
tree | 05e88b4e7c30aba16e152762a23f1aa802ed604a /cmd/eficonfig.c | |
parent | af04f37a78c7e61597fb9ed6db2c8f8d7f8b0f92 (diff) | |
parent | 52c62acc349a0ec1ba26ae497913ad34ee3de733 (diff) |
Merge tag 'efi-2024-07-rc1-3' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2024-07-rc1-3
Documentation:
* sort env sub-commands alphabetically
* update list of aliases for the env command
UEFI:
* allow enabling SetVariable at runtime
for future OS supported writing to ubootefi.var
* use event callback for initrd deregistration
Others:
* correct alignment of x86 firmware tables
Diffstat (limited to 'cmd/eficonfig.c')
-rw-r--r-- | cmd/eficonfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/eficonfig.c b/cmd/eficonfig.c index 8234e602b8f..0ba92c60e03 100644 --- a/cmd/eficonfig.c +++ b/cmd/eficonfig.c @@ -1419,7 +1419,7 @@ static efi_status_t eficonfig_edit_boot_option(u16 *varname, struct eficonfig_bo } bo->initrd_info.current_path = calloc(1, EFICONFIG_FILE_PATH_BUF_SIZE); - if (!bo->file_info.current_path) { + if (!bo->initrd_info.current_path) { ret = EFI_OUT_OF_RESOURCES; goto out; } |