diff options
author | Peter Chubb <peterc@gelato.unsw.edu.au> | 2007-08-16 15:03:07 +1000 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2007-08-17 13:44:15 -0700 |
commit | 471e7a44848f467c9b83adc3463d019d2fa8817f (patch) | |
tree | 9afa086e27d130e0944a89e172f32172869e03d7 /arch/ia64/kernel | |
parent | b09e789c438c406bd9bcaac6f1c940a75007e59f (diff) | |
download | linux-471e7a44848f467c9b83adc3463d019d2fa8817f.tar.gz linux-471e7a44848f467c9b83adc3463d019d2fa8817f.tar.bz2 linux-471e7a44848f467c9b83adc3463d019d2fa8817f.zip |
[IA64] Enable early console for Ski simulator
When using Ski to debug early startup, it's a bit of a pain not to
have printk.
This patch enables the simulated console very early.
It may be worth conditionalising on the command line... but this is
enough for now.
Signed-off-by: Peter Chubb <peterc@gelato.unsw.edu.au>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/kernel')
-rw-r--r-- | arch/ia64/kernel/setup.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/ia64/kernel/setup.c b/arch/ia64/kernel/setup.c index cd9a37a552c3..407efea04bf5 100644 --- a/arch/ia64/kernel/setup.c +++ b/arch/ia64/kernel/setup.c @@ -389,6 +389,13 @@ early_console_setup (char *cmdline) if (!efi_setup_pcdp_console(cmdline)) earlycons++; #endif +#ifdef CONFIG_HP_SIMSERIAL_CONSOLE + { + extern struct console hpsim_cons; + register_console(&hpsim_cons); + earlycons++; + } +#endif return (earlycons) ? 0 : -1; } |