]> git.karo-electronics.de Git - linux-beck.git/commitdiff
sparc32: always register a PROM based early console
authorSam Ravnborg <sam@ravnborg.org>
Thu, 21 Apr 2011 22:47:35 +0000 (15:47 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 21 Apr 2011 22:47:35 +0000 (15:47 -0700)
Do not require user to add "-p" to boot arguments to see
early info printed to prom console.

This is similar to the sparc64 functionality - which was added with:
3c62a2d3477ff7725210db57aec3d2806fa10c20 ("[SPARC64]: Always register
a PROM based early console.")

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc/kernel/devices.c
arch/sparc/kernel/prom_32.c
arch/sparc/kernel/setup_32.c

index 12aff23beb940afdff7b2e04503499f6b4125f25..113c052c30432ed7cd1316b5e46d9e9ffa5bcfa1 100644 (file)
@@ -114,7 +114,7 @@ int cpu_get_hwmid(phandle prom_node)
 
 void __init device_scan(void)
 {
-       prom_printf("Booting Linux...\n");
+       printk(KERN_NOTICE "Booting Linux...\n");
 
 #ifndef CONFIG_SMP
        {
index 05fb253305831095c660bb3aab077ac837f8f16e..5ce3d15a99b0fc13016ab143967a4aa1df8ba478 100644 (file)
@@ -326,7 +326,6 @@ void __init of_console_init(void)
                        of_console_options = NULL;
        }
 
-       prom_printf(msg, of_console_path);
        printk(msg, of_console_path);
 }
 
index 8f3031f6ecf78106585b5fb12f1cc38e7cd62d52..ef8a2ed9516141cc789d01df87db6603e50430ab 100644 (file)
@@ -109,10 +109,10 @@ prom_console_write(struct console *con, const char *s, unsigned n)
        prom_write(s, n);
 }
 
-static struct console prom_debug_console = {
-       .name =         "debug",
+static struct console prom_early_console = {
+       .name =         "earlyprom",
        .write =        prom_console_write,
-       .flags =        CON_PRINTBUFFER,
+       .flags =        CON_PRINTBUFFER | CON_BOOT,
        .index =        -1,
 };
 
@@ -133,8 +133,7 @@ static void __init process_switch(char c)
                prom_halt();
                break;
        case 'p':
-               /* Use PROM debug console. */
-               register_console(&prom_debug_console);
+               /* Just ignore, this behavior is now the default.  */
                break;
        default:
                printk("Unknown boot switch (-%c)\n", c);
@@ -215,6 +214,10 @@ void __init setup_arch(char **cmdline_p)
        strcpy(boot_command_line, *cmdline_p);
        parse_early_param();
 
+       boot_flags_init(*cmdline_p);
+
+       register_console(&prom_early_console);
+
        /* Set sparc_cpu_model */
        sparc_cpu_model = sun_unknown;
        if (!strcmp(&cputypval[0], "sun4 "))
@@ -265,7 +268,6 @@ void __init setup_arch(char **cmdline_p)
 #ifdef CONFIG_DUMMY_CONSOLE
        conswitchp = &dummy_con;
 #endif
-       boot_flags_init(*cmdline_p);
 
        idprom_init();
        if (ARCH_SUN4C)