diff options
Diffstat (limited to 'arch/x86_64/kernel/early_printk.c')
-rw-r--r-- | arch/x86_64/kernel/early_printk.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86_64/kernel/early_printk.c b/arch/x86_64/kernel/early_printk.c index 296d2b0c5d88..fd9aff3f3890 100644 --- a/arch/x86_64/kernel/early_printk.c +++ b/arch/x86_64/kernel/early_printk.c | |||
@@ -6,6 +6,7 @@ | |||
6 | #include <asm/io.h> | 6 | #include <asm/io.h> |
7 | #include <asm/processor.h> | 7 | #include <asm/processor.h> |
8 | #include <asm/fcntl.h> | 8 | #include <asm/fcntl.h> |
9 | #include <xen/hvc-console.h> | ||
9 | 10 | ||
10 | /* Simple VGA output */ | 11 | /* Simple VGA output */ |
11 | 12 | ||
@@ -242,6 +243,10 @@ static int __init setup_early_printk(char *buf) | |||
242 | simnow_init(buf + 6); | 243 | simnow_init(buf + 6); |
243 | early_console = &simnow_console; | 244 | early_console = &simnow_console; |
244 | keep_early = 1; | 245 | keep_early = 1; |
246 | #ifdef CONFIG_HVC_XEN | ||
247 | } else if (!strncmp(buf, "xen", 3)) { | ||
248 | early_console = &xenboot_console; | ||
249 | #endif | ||
245 | } | 250 | } |
246 | 251 | ||
247 | if (keep_early) | 252 | if (keep_early) |