aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/kernel
diff options
context:
space:
mode:
authordcg <diegocg@gmail.com>2008-09-28 18:49:46 +0200
committerIngo Molnar <mingo@elte.hu>2008-09-29 10:04:53 +0200
commit12544697f12e0ecdcf971075415c7678fae502af (patch)
tree16be20644bcf26e9a5c624fb012acd5f63295e35 /arch/x86/kernel
parentf6476774f1fe32593d3d71903b1e98514efbf685 (diff)
x86_64: be less annoying on boot, v2
Honour "quiet" boot parameter in early_printk() calls Signed-off-by: Diego Calleja <diegocg@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r--arch/x86/kernel/head64.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/kernel/head64.c b/arch/x86/kernel/head64.c
index 11aa501c9f4..d16084f9064 100644
--- a/arch/x86/kernel/head64.c
+++ b/arch/x86/kernel/head64.c
@@ -108,7 +108,8 @@ void __init x86_64_start_kernel(char * real_mode_data)
}
load_idt((const struct desc_ptr *)&idt_descr);
- early_printk("Kernel alive\n");
+ if (console_loglevel == 10)
+ early_printk("Kernel alive\n");
x86_64_init_pda();