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
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;