Console: introduce console=none command line parameter
authorAndrew Cooper <andrew.cooper3@citrix.com>
Sat, 28 Jan 2012 13:41:42 +0000 (13:41 +0000)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Sat, 28 Jan 2012 13:41:42 +0000 (13:41 +0000)
Currenty, not specifying 'console=<foo>' on the command line causes
Xen to default to 'vga'.  Alternativly, the user can explicitly
specifiy 'console=vga|com1|com2'.

However, there is no way to specify that neither vga nor serial should
be used.  Specifying 'console=' does have the effect that neither vga
nor serial is set up, but at the cost of an "Bad console= option ''"
warning.

Therefore, expliticly support a 'console=none' option which does not
set up vga and does not set up serial, but does not trigger the bad
console warning.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Committed-by: Keir Fraser <keir@xen.org>
xen/drivers/char/console.c

index 89cf4f845526a5c081907dc8eb2a0ee854b14abd..a4170701944c84503035ba62f670821609e07439 100644 (file)
@@ -549,6 +549,8 @@ void __init console_init_preirq(void)
             p++;
         if ( !strncmp(p, "vga", 3) )
             vga_init();
+        else if ( !strncmp(p, "none", 4) )
+            continue;
         else if ( strncmp(p, "com", 3) ||
                   (sercon_handle = serial_parse_handle(p)) == -1 )
         {