
The following changes since commit db0dd72e27ce62c5b28f07595b91ed00d0565819:
Merge branch '2021-01-18-assorted-platform-updates' (2021-01-19 07:56:59 -0500)
are available in the Git repository at:
https://gitlab.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-2021-04-rc1-2
for you to fetch changes up to 53e54bf50d285597c1553cdf2bd0e646fcd4dd60:
efi_loader: Avoid emitting efi_var_buf to .GOT (2021-01-20 08:17:17 +0100)
Gitlab CI showed no problems: https://gitlab.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/5960
---------------------------------------------------------------- Pull request for UEFI sub-system for efi-2021-04-rc1-2
* Provide a test tool for initial RAM disk provided via load file2 protocol. * Make more items configurable to reduce code size: * Boot manager * EFI_DT_FIXUP_PROTOCOL * EFI_DEVICE_PATH_UTILITIES_PROTOCOL * Bug fixes * avoid EFI runtime symbols in global symbol table
---------------------------------------------------------------- Heinrich Schuchardt (11): efi_loader: move load options to new module efi_loader: make the UEFI boot manager configurable efi_loader: fixup protocol, avoid forward declaration efi_loader: make EFI_DT_FIXUP_PROTOCOL configurable efi_loader: EFI_DEVICE_PATH_UTILITIES_PROTOCOL configurable efi_loader: remove EFI_UNICODE_COLLATION_PROTOCOL efi_selftest: ask before overwriting in dtbdump.efi efi_selftest: don't compile dtbdump if GENERATE_ACPI_TABLE efi_selftest: provide initrddump test tool efi_selftest: use CRLF as line endings in dtbdump efi_loader: efi_size_in_pages() missing parentheses
Ilias Apalodimas (1): efi_loader: Avoid emitting efi_var_buf to .GOT
cmd/bootefi.c | 13 +- cmd/efidebug.c | 8 +- include/config_distro_bootcmd.h | 12 +- include/efi_api.h | 4 - include/efi_loader.h | 5 +- include/efi_variable.h | 11 + lib/efi_loader/Kconfig | 34 ++- lib/efi_loader/Makefile | 5 +- lib/efi_loader/efi_bootmgr.c | 135 ---------- lib/efi_loader/efi_dt_fixup.c | 34 ++- lib/efi_loader/efi_load_options.c | 149 +++++++++++ lib/efi_loader/efi_root_node.c | 10 +- lib/efi_loader/efi_unicode_collation.c | 39 +-- lib/efi_loader/efi_var_mem.c | 13 +- lib/efi_loader/efi_variable_tee.c | 2 +- lib/efi_selftest/Makefile | 11 +- lib/efi_selftest/dtbdump.c | 148 ++++++++--- lib/efi_selftest/efi_selftest_console.c | 3 +- lib/efi_selftest/initrddump.c | 449 ++++++++++++++++++++++++++++++++ 19 files changed, 820 insertions(+), 265 deletions(-) create mode 100644 lib/efi_loader/efi_load_options.c create mode 100644 lib/efi_selftest/initrddump.c