summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPranav Tilak <[email protected]>2026-02-02 17:07:17 +0530
committerHeinrich Schuchardt <[email protected]>2026-02-06 09:56:45 +0100
commit32b835ccf3db8ae393c1ff27a9a367f7b6edd78f (patch)
tree93618090530fcfd6c0dfb46dbac6fd1124fb6834 /lib
parentbeec6834544d8288d34ef0cd8e3c40aa890a8a10 (diff)
efi_loader: Improve EFI variable load message
Change the EFI variable load message from log_err() to log_info() with neutral wording. The previous "Failed to load" message caused customer confusion as it appeared to indicate an error condition. The efi_var_from_file() function deliberately returns EFI_SUCCESS in this case to allow the boot process to continue normally. This is documented in the function's comment block but was not reflected in the log message level or content. The message now uses informational wording to reflect that this is normal behavior when the ubootefi.var file does not yet exist. Signed-off-by: Pranav Tilak <[email protected]> Reviewed-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'lib')
-rw-r--r--lib/efi_loader/efi_var_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_var_file.c b/lib/efi_loader/efi_var_file.c
index ba0bf33ffbd..f23a964a418 100644
--- a/lib/efi_loader/efi_var_file.c
+++ b/lib/efi_loader/efi_var_file.c
@@ -173,7 +173,7 @@ efi_status_t efi_var_from_file(void)
r = fs_read(EFI_VAR_FILE_NAME, map_to_sysmem(buf), 0, EFI_VAR_BUF_SIZE,
&len);
if (r || len < sizeof(struct efi_var_file)) {
- log_err("Failed to load EFI variables\n");
+ log_info("No EFI variables loaded\n");
goto error;
}
if (buf->length != len || efi_var_restore(buf, false) != EFI_SUCCESS)