diff options
author | Tom Rini <trini@konsulko.com> | 2022-04-23 18:42:00 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-04-23 18:42:00 -0400 |
commit | 46a06ed82a81dfcb451fe82381c59c1d0a6667a1 (patch) | |
tree | a4b23b20380a7850521338c5dfe5a5ab6ae47d09 /common/board_r.c | |
parent | 9bb99fa95826d1a608737ca821977b4136a1a278 (diff) | |
parent | d97e98c887ed8fa4a339350c02f093f03cd1cf4d (diff) |
Merge tag 'efi-2022-07-rc1-3' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2022-07-rc1-3
Documentation:
* Document image size parameter of bootefi command
UEFI:
* avoid building partition support in SPL/TPL where not required
* improve integration of EFI subsystem and driver model
* restore ability to boot arbitrary blob
Diffstat (limited to 'common/board_r.c')
-rw-r--r-- | common/board_r.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/board_r.c b/common/board_r.c index 8dc87ed2be4..7d0281f5447 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -795,7 +795,7 @@ static init_fnc_t init_sequence_r[] = { initr_mem, #endif #ifdef CONFIG_EFI_SETUP_EARLY - (init_fnc_t)efi_init_obj_list, + efi_init_early, #endif run_main_loop, }; |