x86, setup: enable early console output from the decompressor
[pandora-kernel.git] / arch / x86 / boot / main.c
index 4ef1a33..40358c8 100644 (file)
@@ -132,6 +132,8 @@ void main(void)
 
        /* Initialize the early-boot console */
        console_init();
+       if (cmdline_find_option_bool("debug"))
+               puts("early console in setup code\n");
 
        /* End of heap check */
        init_heap();
@@ -171,10 +173,6 @@ void main(void)
        /* Set the video mode */
        set_video();
 
-       /* Parse command line for 'quiet' and pass it to decompressor. */
-       if (cmdline_find_option_bool("quiet"))
-               boot_params.hdr.loadflags |= QUIET_FLAG;
-
        /* Do the last things and invoke protected mode */
        go_to_protected_mode();
 }