[PATCH v2 044/113] efi: payload: lower command line options print from error to info
Ahmad Fatoum
a.fatoum at pengutronix.de
Mon Mar 4 10:59:29 PST 2024
What command line arguments are passed is informational at best and
doesn't warrant an error log level.
Signed-off-by: Ahmad Fatoum <a.fatoum at pengutronix.de>
---
efi/payload/image.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/efi/payload/image.c b/efi/payload/image.c
index a8748da1df88..fb77ce4437fc 100644
--- a/efi/payload/image.c
+++ b/efi/payload/image.c
@@ -177,7 +177,7 @@ static int efi_execute_image(const char *file)
image_header->header == 0x53726448) {
pr_debug("Linux kernel detected. Adding bootargs.");
options = linux_bootargs_get();
- pr_err("add linux options '%s'\n", options);
+ pr_info("add linux options '%s'\n", options);
if (options) {
loaded_image->load_options = xstrdup_char_to_wchar(options);
loaded_image->load_options_size =
--
2.39.2
More information about the barebox
mailing list