auto=true preseed
hw-detect/load_firmware=false
DEBCONF_DEBUG=5
- DEBIAN_FRONTEND=text
);
+ my $difront = get_host_property($tho,'DIFrontend','text');
push @cl, (
+ "DEBIAN_FRONTEND=$difront",
"hostname=$tho->{Name}",
"url=$ps_url",
"netcfg/dhcp_timeout=150",
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
+ instead.
+
+HostProp_<testbox>_DIFrontend
+ Configure the frontend used by Debian installer. Default in osstest
+ is a very basic "text" interface but for standalone configurations,
+ especially on VGA, "newt" might be preferred.
+
DebianPreseed
- Text to add to the debian-installer preseed file. Optional
- but you will need to set some NTP servers here if your firewall
- doesn't permit NTP to Debian's pool.ntp.org servers.
+ Text to add to the debian-installer preseed file. Optional
+ but you will need to set some NTP servers here if your firewall
+ doesn't permit NTP to Debian's pool.ntp.org servers.
DebianNonfreeFirmware
List of debs of non-free firmware to include in the massaged
get_host_property($ho, "install-append $ho->{Suite}", '');
push @installcmdline, qw(--);
- push @installcmdline, "console=ttyS0,$c{Baud}n8";
+ push @installcmdline, "console=ttyS0,$c{Baud}n8"
+ unless get_host_property($ho, "NoSerial", "0");
my $installcmdline= join ' ', @installcmdline;