[Buildroot] [git commit] package/kvm-unit-tests: add more arm support

Yann E. MORIN yann.morin.1998 at free.fr
Wed Mar 23 11:11:40 UTC 2022


commit: https://git.buildroot.net/buildroot/commit/?id=f7228dadd3719876c623cb95e611c6ec9ebf9346
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Add some more cortexes with VHE, and enable aarch64.

Signed-off-by: Cornelia Huck <cohuck at redhat.com>
Reviewed-by: Thomas Huth <huth at tuxfamily.org>
Signed-off-by: Yann E. MORIN <yann.morin.1998 at free.fr>
---
 package/kvm-unit-tests/Config.in         | 5 ++++-
 package/kvm-unit-tests/kvm-unit-tests.mk | 4 +++-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/package/kvm-unit-tests/Config.in b/package/kvm-unit-tests/Config.in
index a3d6756fb9..2b797e13b4 100644
--- a/package/kvm-unit-tests/Config.in
+++ b/package/kvm-unit-tests/Config.in
@@ -3,7 +3,10 @@ config BR2_PACKAGE_KVM_UNIT_TESTS_ARCH_SUPPORTS
 	# On ARM, it uses virtualization extensions
 	default y if BR2_cortex_a7 || BR2_cortex_a12 || \
 		BR2_cortex_a15 || BR2_cortex_a15_a7 || \
-		BR2_cortex_a17 || BR2_cortex_a17_a7
+		BR2_cortex_a17 || BR2_cortex_a17_a7 || \
+		BR2_cortex_a55 || BR2_cortex_a75 || \
+		BR2_cortex_a75_a55 || BR2_cortex_a76 || \
+		BR2_cortex_a76_a55
 	default y if BR2_i386 || BR2_x86_64
 	default y if BR2_powerpc64 || BR2_powerpc64le
 	default y if BR2_s390x
diff --git a/package/kvm-unit-tests/kvm-unit-tests.mk b/package/kvm-unit-tests/kvm-unit-tests.mk
index 2d05d08067..e56436f802 100644
--- a/package/kvm-unit-tests/kvm-unit-tests.mk
+++ b/package/kvm-unit-tests/kvm-unit-tests.mk
@@ -10,7 +10,9 @@ KVM_UNIT_TESTS_SITE = https://gitlab.com/kvm-unit-tests/kvm-unit-tests/-/archive
 KVM_UNIT_TESTS_LICENSE = LGPL-2.0
 KVM_UNIT_TESTS_LICENSE_FILES = COPYRIGHT
 
-ifeq ($(BR2_arm),y)
+ifeq ($(BR2_aarch64),y)
+KVM_UNIT_TESTS_ARCH = aarch64
+else ifeq ($(BR2_arm),y)
 KVM_UNIT_TESTS_ARCH = arm
 else ifeq ($(BR2_i386),y)
 KVM_UNIT_TESTS_ARCH = i386



More information about the buildroot mailing list