diff options
author | Tom Rini <trini@konsulko.com> | 2020-10-06 08:36:38 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-10-06 08:36:38 -0400 |
commit | 5dcf7cc590b348f1e730ec38242df64c179f10a8 (patch) | |
tree | 7ba5948897352b913338be6cf27061570e96a128 /lib/efi_selftest/efi_selftest_load_initrd.c | |
parent | 987ab49366f3fcd25039eab431bf099b587b3265 (diff) | |
parent | 4cbb2930bd8c67f40f848528941930cf4c2a1841 (diff) |
Merge tag 'efi-2021-01-rc1' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2021-01-rc1
The following bugs in the UEFI system are resolved:
* illegal free in EFI_LOAD_FILE2_PROTOCOL implementation
* incorrect documentation of EFI_LOAD_FILE2_PROTOCOL implementation
* output of CRC32 as decimal instead hexadecimal in unit test
* use EfiReservedMemoryType for no-map reserved memory
* avoid unnecessary resets in UEFI unit tests
* call EFI bootmgr even without having /EFI/boot
Diffstat (limited to 'lib/efi_selftest/efi_selftest_load_initrd.c')
-rw-r--r-- | lib/efi_selftest/efi_selftest_load_initrd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_selftest/efi_selftest_load_initrd.c b/lib/efi_selftest/efi_selftest_load_initrd.c index e16163caca8..fe060a66440 100644 --- a/lib/efi_selftest/efi_selftest_load_initrd.c +++ b/lib/efi_selftest/efi_selftest_load_initrd.c @@ -200,7 +200,7 @@ static int execute(void) efi_st_error("Could not determine CRC32\n"); return EFI_ST_FAILURE; } - efi_st_printf("CRC32 %u\n", (unsigned int)crc32); + efi_st_printf("CRC32 %.8x\n", (unsigned int)crc32); status = boottime->free_pool(buf); if (status != EFI_SUCCESS) { |