From 98894b8dc87eca33f91d2993b06bddeedeb641ad Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Thu, 1 Oct 2015 10:40:42 +0100 Subject: [PATCH] ts-kernel-build: Add arm64 support And to Osstest::%arch_debian2*. Untested (but hopefully pretty obvious). Signed-off-by: Ian Campbell Acked-by: Ian Jackson --- Osstest.pm | 6 ++++-- ts-kernel-build | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Osstest.pm b/Osstest.pm index 27451ea7..833bc778 100644 --- a/Osstest.pm +++ b/Osstest.pm @@ -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; diff --git a/ts-kernel-build b/ts-kernel-build index 639864ba..d6f3adcd 100755 --- a/ts-kernel-build +++ b/ts-kernel-build @@ -38,6 +38,7 @@ selectbuildhost(\@ARGV); builddirsprops(); my $archparms = { + 'arm64' => { Image => 'Image' }, 'armhf' => { DefConfig => 'multi_v7', Image => 'zImage' }, 'i386' => { Image => 'bzImage' }, 'amd64' => { Image => 'bzImage' } -- 2.39.5