Skip to content

Commit

Permalink
init: raise log level
Browse files Browse the repository at this point in the history
If the kernel was booted with the "quiet" boot option we have currently no
chance to see why an initrd fails.  Change KERN_WARNING to KERN_ERR to see
what is going on.

Signed-off-by: Richard Weinberger <richard@nod.at>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Jim Cromie <jim.cromie@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
richardweinberger authored and torvalds committed Apr 30, 2013
1 parent f91eb62 commit c2409b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions init/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ static int __ref kernel_init(void *unused)
if (ramdisk_execute_command) {
if (!run_init_process(ramdisk_execute_command))
return 0;
printk(KERN_WARNING "Failed to execute %s\n",
printk(KERN_ERR "Failed to execute %s\n",
ramdisk_execute_command);
}

Expand All @@ -838,7 +838,7 @@ static int __ref kernel_init(void *unused)
if (execute_command) {
if (!run_init_process(execute_command))
return 0;
printk(KERN_WARNING "Failed to execute %s. Attempting "
printk(KERN_ERR "Failed to execute %s. Attempting "
"defaults...\n", execute_command);
}
if (!run_init_process("/sbin/init") ||
Expand Down Expand Up @@ -884,7 +884,7 @@ static noinline void __init kernel_init_freeable(void)

/* Open the /dev/console on the rootfs, this should never fail */
if (sys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0)
printk(KERN_WARNING "Warning: unable to open an initial console.\n");
printk(KERN_ERR "Warning: unable to open an initial console.\n");

(void) sys_dup(0);
(void) sys_dup(0);
Expand Down

0 comments on commit c2409b0

Please sign in to comment.