diff options
author | Tom Rini <trini@konsulko.com> | 2022-07-13 21:31:46 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-07-13 21:31:46 -0400 |
commit | 854d6de6107bca044db362612f39691f4f5395ca (patch) | |
tree | 7ccfd331396ba02a8d5a0fd1a77f3f67f80895c0 /cmd/bootefi.c | |
parent | 357fa8bb4d40abf411a6cca70f5a2dd6413028ea (diff) | |
parent | a093d72e628a798238269eb77850d57ee50198bb (diff) |
Merge tag 'efi-2022-10-rc1' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2022-10-rc1
Documentation:
* rework the mkimage.1 man-page
* add a statistics page for v2022.07
* update environment description
UEFI:
* add Ilias Apalodimas as co-maintainer
* fix a memory leak in efi_set_bootdev()
* suppress a build warning
Diffstat (limited to 'cmd/bootefi.c')
-rw-r--r-- | cmd/bootefi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/bootefi.c b/cmd/bootefi.c index 37ce659fa1..8ab0ff5a64 100644 --- a/cmd/bootefi.c +++ b/cmd/bootefi.c @@ -119,9 +119,9 @@ void efi_set_bootdev(const char *dev, const char *devnr, const char *path, efi_free_pool(image_tmp); } bootefi_image_path = image; - log_debug("- recorded device %ls\n", efi_dp_str(device)); + log_debug("- boot device %pD\n", device); if (image) - log_debug("- and image %ls\n", efi_dp_str(image)); + log_debug("- image %pD\n", image); } else { log_debug("- efi_dp_from_name() failed, err=%lx\n", ret); efi_clear_bootdev(); |