search for: opt_console

Displaying 2 results from an estimated 2 matches for "opt_console".

Did you mean: openconsole
2009 Aug 28
0
[PATCH] properly __initdata-annotate command line option string buffers
...avings is set, --- 2009-08-18.orig/xen/drivers/char/console.c 2009-08-07 09:20:56.000000000 +0200 +++ 2009-08-18/xen/drivers/char/console.c 2009-08-24 17:51:39.000000000 +0200 @@ -36,7 +36,7 @@ #include <public/sysctl.h> /* console: comma-separated list of console outputs. */ -static char opt_console[30] = OPT_CONSOLE_STR; +static char __initdata opt_console[30] = OPT_CONSOLE_STR; string_param("console", opt_console); /* conswitch: a character pair controlling console switching. */ @@ -677,7 +677,7 @@ void __init console_endboot(void) switch_serial_input(); } -int console_...
2007 Sep 23
7
[PATCH] Default serial console to BAUD_AUTO
# HG changeset patch # User john.levon@sun.com # Date 1190588448 25200 # Node ID 9a8a2d9ad94f20c995a7b59b75fdd6fefb8dafc6 # Parent 20c00448e39c7d8528e40287cafe614a5d4bdbf5 Default serial console to BAUD_AUTO Currently, the defaults for the serial console have a baud rate of zero, which is less than useful. Default to BAUD_AUTO instead, so you can just specify "console=com1" and it will