summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2024-03-04 19:59:29 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2024-03-05 16:28:05 +0100
commit73d824f775548faabea1106c3826149bdad8e853 (patch)
treeecf65411f0badcb70f7a1a07b9a0faf0836ad770
parent5b175c52b53b716e2b47d91044c18209baa4522a (diff)
downloadbarebox-73d824f77554.tar.gz
barebox-73d824f77554.tar.xz
efi: payload: lower command line options print from error to info
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@pengutronix.de> Link: https://lore.barebox.org/20240304190038.3486881-45-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--efi/payload/image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/efi/payload/image.c b/efi/payload/image.c
index a8748da1df..fb77ce4437 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 =