From: Ian Jackson Date: Tue, 9 Apr 2013 13:08:00 +0000 (+0100) Subject: ts-xen-install: support xen-commandline-append host property X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=de98809aeea60f79d07242d31f22da10de1e251f;p=people%2Fdariof%2Fosstest.git ts-xen-install: support xen-commandline-append host property --- diff --git a/ts-xen-install b/ts-xen-install index 0d65d8b..ca644b7 100755 --- a/ts-xen-install +++ b/ts-xen-install @@ -127,6 +127,8 @@ sub setupboot () { } my $append= $r{xen_boot_append}; $xenhopt .= " $append" if defined $append; + $append = get_host_property($ho, 'xen-commandline-append', undef); + $xenhopt .= " $append" if defined $append; my @hooks;