Displaying 2 results from an estimated 2 matches for "preseed_base".
2013 Dec 11
29
[PATCH RFC V2 0/6] OSSTest: OVMF test job
...ing BIOS, it worked fine. I just
didn''t figure out a sensible way to organize test cases and run jobs.
OVMF will need to build for amd64 target and used with QEMU upstream.
Not very sure whether I did the right thing to make-flight and sg-run-job
though.
Wei.
Changes in v2:
* factor out preseed_base
* make installation CD work with seabios
Wei Liu (6):
TestSupport.pm: add bios option to guest config file
Build OVMF for Xen-unstable
Debian.pm: factor out preseed_base
Introduce ts-ovmf-debian-install
make-flight: OVMF test filght
sg-run-job: OVMF job
Osstest/Debian.pm | 129...
2013 Nov 25
6
[PATCH/RFC OSSTEST] Debian PV netboot guest test
...preseed_create
+ preseed_create_guest
preseed_hook_command preseed_hook_installscript
di_installcmdline_core
);
@@ -434,6 +435,128 @@ sub di_installcmdline_core ($$;@) {
return @cl;
}
+sub preseed_base ($) {
+ my ($suite) = @_;
+
+ my $preseed= (<<END);
+d-i mirror/suite string $suite
+
+d-i debian-installer/locale string en_GB
+d-i console-keymaps-at/keymap select gb
+d-i keyboard-configuration/xkb-keymap string en_GB
+
+#d-i debconf/frontend string readline
+
+d-i mirror/country str...