diff options
author | Tom Rini <trini@konsulko.com> | 2019-02-18 15:48:01 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-02-18 15:48:01 -0500 |
commit | beff8e34b22d708df11b32b6ed27be49ba345875 (patch) | |
tree | 24e03177fb25d4721a77ddaa38218579c3455353 /lib/efi_loader/efi_bootmgr.c | |
parent | 500ad54e35c636b0a05170753da58fcd8c8de6f2 (diff) | |
parent | 997fc12ec91eccf6b7485565864f3eb8ce74def2 (diff) |
Merge tag 'efi-2019-04-rc2' of https://github.com/xypron2/u-boot
The patches fix multiple errors. Mentionable are:
- EFI unit tests (bootefi selftest) can run on i386.
- `make tests` executes the Unicode unit tests.
The LoadImage patch is preparing for further rework to be delivered
in v2019.07.
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 a095df3f540..196116b5472 100644 --- a/lib/efi_loader/efi_bootmgr.c +++ b/lib/efi_loader/efi_bootmgr.c @@ -150,7 +150,7 @@ static void *try_load_entry(uint16_t n, struct efi_device_path **device_path, debug("%s: trying to load \"%ls\" from %pD\n", __func__, lo.label, lo.file_path); - ret = efi_load_image_from_path(lo.file_path, &image); + ret = efi_load_image_from_path(lo.file_path, &image, &size); if (ret != EFI_SUCCESS) goto error; |