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);
}
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") ||
/* 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);