]> xenbits.xensource.com Git - people/liuw/osstest.git/commitdiff
ts-host-install: honour arch-specific boot append properties
authorIan Jackson <ian.jackson@eu.citrix.com>
Tue, 31 Mar 2015 13:51:42 +0000 (13:51 +0000)
committerIan Jackson <ian.jackson@eu.citrix.com>
Tue, 31 Mar 2015 13:51:42 +0000 (13:51 +0000)
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
ts-host-install

index 9656079c92473f4ab2bdf1688c4888faa4931f3a..a8543a41811c3d7ace7492208b101b8b95840bf5 100755 (executable)
@@ -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;