package/kvm-unit-tests: add s390x support

s390x is supported since
3934308046

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Reviewed-by: Thomas Huth <huth@tuxfamily.org>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Fabrice Fontaine 2022-03-17 23:39:28 +01:00 committed by Yann E. MORIN
parent eaa8fcf546
commit 4f9a011ab2
2 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,7 @@ config BR2_PACKAGE_KVM_UNIT_TESTS_ARCH_SUPPORTS
BR2_cortex_a17 || BR2_cortex_a17_a7
default y if BR2_i386 || BR2_x86_64
default y if BR2_powerpc64 || BR2_powerpc64le
default y if BR2_s390x
config BR2_PACKAGE_KVM_UNIT_TESTS
bool "kvm-unit-tests"

View File

@ -16,6 +16,8 @@ else ifeq ($(BR2_i386),y)
KVM_UNIT_TESTS_ARCH = i386
else ifeq ($(BR2_powerpc64)$(BR2_powerpc64le),y)
KVM_UNIT_TESTS_ARCH = ppc64
else ifeq ($(BR2_s390x),y)
KVM_UNIT_TESTS_ARCH = s390x
else ifeq ($(BR2_x86_64),y)
KVM_UNIT_TESTS_ARCH = x86_64
endif