[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTEST PATCH 6/6] ts-host-install: honour arch-specific boot append properties
Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- ts-host-install | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ts-host-install b/ts-host-install index 9656079..a8543a4 100755 --- a/ts-host-install +++ b/ts-host-install @@ -235,7 +235,8 @@ END "domain=$c{TestHostDomain}", ); push @installcmdline, - get_host_property($ho, "install-append $ho->{Suite}", ''); + get_host_property($ho, "install-append $ho->{Suite}", ''), + get_host_property($ho, "install-append $ho->{Suite} $r{arch}", ''); my $console = get_host_native_linux_console($ho); @@ -248,7 +249,8 @@ END push @installcmdline, "console=$console" unless $console eq "NONE"; push @installcmdline, - get_host_property($ho, "linux-boot-append $ho->{Suite}", ''); + get_host_property($ho, "linux-boot-append $ho->{Suite}", ''), + get_host_property($ho, "linux-boot-append $ho->{Suite} $r{arch}", ''); 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 |