diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-08-27 17:51:32 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-09-06 21:21:41 +0200 |
commit | 0f7878b853bdc363a930381c42b709b7d24066b5 (patch) | |
tree | 874b51148934b06ebbe5e66375d18f38fe1f1937 /lib | |
parent | 24586059d3818d812300c77257c5134ddd7e2935 (diff) | |
download | u-boot-0f7878b853bdc363a930381c42b709b7d24066b5.tar.gz u-boot-0f7878b853bdc363a930381c42b709b7d24066b5.tar.bz2 u-boot-0f7878b853bdc363a930381c42b709b7d24066b5.zip |
efi_loader: error message if image not authenticated
Currently if the bootefi command fails due to missing authentication, the
user gets no feedback.
Write a log message 'Image not authenticated' if LoadImage() fails due to
missing authentication.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_image_loader.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/efi_loader/efi_image_loader.c b/lib/efi_loader/efi_image_loader.c index da50fc31f1..94f76ef6b8 100644 --- a/lib/efi_loader/efi_image_loader.c +++ b/lib/efi_loader/efi_image_loader.c @@ -762,10 +762,12 @@ efi_status_t efi_load_pe(struct efi_loaded_image_obj *handle, } /* Authenticate an image */ - if (efi_image_authenticate(efi, efi_size)) + if (efi_image_authenticate(efi, efi_size)) { handle->auth_status = EFI_IMAGE_AUTH_PASSED; - else + } else { handle->auth_status = EFI_IMAGE_AUTH_FAILED; + log_err("Image not authenticated\n"); + } /* Calculate upper virtual address boundary */ for (i = num_sections - 1; i >= 0; i--) { |