X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=arch%2Fx86%2Fboot%2Fmain.c;h=2296164b54d2abc3ad8edc343af2b76c830d6693;hb=a3da5bf84a97d48cfaf66c6842470fc403da5121;hp=7828da5cfd07475376c7d4d3fc95282334b60a3d;hpb=c1f3ee120bb61045b1c0a3ead620d1d65af47130;p=pandora-kernel.git diff --git a/arch/x86/boot/main.c b/arch/x86/boot/main.c index 7828da5cfd07..2296164b54d2 100644 --- a/arch/x86/boot/main.c +++ b/arch/x86/boot/main.c @@ -9,8 +9,6 @@ * ----------------------------------------------------------------------- */ /* - * arch/i386/boot/main.c - * * Main module for the real-mode kernel code */ @@ -167,6 +165,10 @@ 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(); }