]> xenbits.xensource.com Git - people/iwj/osstest.git/commitdiff
ts-kernel-build: Add arm64 support
authorIan Campbell <ian.campbell@citrix.com>
Thu, 1 Oct 2015 09:40:42 +0000 (10:40 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Thu, 8 Oct 2015 16:19:13 +0000 (17:19 +0100)
And to Osstest::%arch_debian2*.

Untested (but hopefully pretty obvious).

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Osstest.pm
ts-kernel-build

index 27451ea7c3c0ad26fa961357005e3ae3541c6914..833bc778cab825bc875945454410dde2d1ff79ea 100644 (file)
@@ -60,13 +60,15 @@ scalar *main::DEBUG;
 
 our %arch_debian2xen = qw(i386 x86_32
                          amd64 x86_64
-                         armhf armhf);
+                         armhf armhf
+                          arm64 arm64);
 our %arch_xen2debian;
 $arch_xen2debian{$arch_debian2xen{$_}} = $_ foreach keys %arch_debian2xen;
 
 our %arch_debian2linux = qw(i386 x86
                            amd64 x86
-                           armhf arm);
+                           armhf arm
+                            arm64 arm64);
 our %arch_linux2debian;
 $arch_linux2debian{$arch_debian2linux{$_}} = $_
     foreach keys %arch_debian2linux;
index 639864ba323a0ab5533c0c2383667194638a6dbc..d6f3adcde46008bf23eb8aedaf96eb7af52dac17 100755 (executable)
@@ -38,6 +38,7 @@ selectbuildhost(\@ARGV);
 builddirsprops();
 
 my $archparms = {
+    'arm64' => {                          Image => 'Image' },
     'armhf' => { DefConfig => 'multi_v7', Image => 'zImage' },
     'i386'  => {                          Image => 'bzImage' },
     'amd64' => {                          Image => 'bzImage' }