X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=arch%2Fx86%2Fboot%2Fmain.c;fp=arch%2Fx86%2Fboot%2Fmain.c;h=40358c8905befe2cdf8c8ef6055300e00e08a3a0;hb=8fee13a48e4879fba57725f6d9513df4bfa8e9f3;hp=4ef1a33e8572e84d9a6312ef47b719c03ef27963;hpb=f4ed2877b16e8146427306aea8819adac5c88374;p=pandora-kernel.git diff --git a/arch/x86/boot/main.c b/arch/x86/boot/main.c index 4ef1a33e8572..40358c8905be 100644 --- a/arch/x86/boot/main.c +++ b/arch/x86/boot/main.c @@ -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(); }