[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 05/10] ts-host-install: Support for different console devices
Subsumes NoSerial host property as well. --- README | 5 +++-- ts-host-install | 6 ++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README b/README index d92afea..4bf3b26 100644 --- a/README +++ b/README @@ -88,8 +88,9 @@ HostProp_<testbox>_Ether MAC address of the box <testbox>. Only needed if you want to use the osstest host and Xen installer. -HostProp_<testbox>_NoSerial - Set to 1 if <testbox> has no serial, system will use VGA console +HostProp_<testbox>_SerialConsole + Set to the serial console device on the platform. Defaults to + ttyS0. If set to "NONE" then the system will use VGA console instead. HostProp_<testbox>_DIFrontend diff --git a/ts-host-install b/ts-host-install index b7257d7..b974365 100755 --- a/ts-host-install +++ b/ts-host-install @@ -177,8 +177,10 @@ END get_host_property($ho, "install-append $ho->{Suite}", ''); push @installcmdline, qw(--); - push @installcmdline, "console=ttyS0,$c{Baud}n8" - unless get_host_property($ho, "NoSerial", "0"); + + my $console = get_host_property($ho, "SerialConsole", "ttyS0"); + push @installcmdline, "console=$console,$c{Baud}n8" + unless $console eq "NONE"; my $installcmdline= join ' ', @installcmdline; -- 1.7.10.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |