From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from smtp1.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id B407DC433EF for ; Wed, 23 Mar 2022 11:12:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp1.osuosl.org (Postfix) with ESMTP id 431E38499D; Wed, 23 Mar 2022 11:12:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp1.osuosl.org ([127.0.0.1]) by localhost (smtp1.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11A3Eb9xHh98; Wed, 23 Mar 2022 11:12:24 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp1.osuosl.org (Postfix) with ESMTP id 48CF58496B; Wed, 23 Mar 2022 11:12:23 +0000 (UTC) Received: from smtp3.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 6CA181BF9C8 for ; Wed, 23 Mar 2022 11:12:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp3.osuosl.org (Postfix) with ESMTP id 55EC460E87 for ; Wed, 23 Mar 2022 11:12:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp3.osuosl.org ([127.0.0.1]) by localhost (smtp3.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xc1860ooqjRl for ; Wed, 23 Mar 2022 11:12:08 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.122]) by smtp3.osuosl.org (Postfix) with ESMTP id 4F76060E41 for ; Wed, 23 Mar 2022 11:12:08 +0000 (UTC) Received: by busybox.osuosl.org (Postfix, from userid 4049) id 65464851CA; Wed, 23 Mar 2022 11:03:09 +0000 (UTC) From: Yann E. MORIN To: buildroot@buildroot.org Date: Wed, 23 Mar 2022 12:11:40 +0100 X-Git-Refname: refs/heads/master X-Git-Oldrev: 4f9a011ab2c125b70c93e510812f00465a929142 X-Git-Newrev: f7228dadd3719876c623cb95e611c6ec9ebf9346 X-Patchwork-Hint: ignore Message-Id: <20220323110309.65464851CA@busybox.osuosl.org> Subject: [Buildroot] [git commit] package/kvm-unit-tests: add more arm support X-BeenThere: buildroot@buildroot.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: buildroot-bounces@buildroot.org Sender: "buildroot" 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 Reviewed-by: Thomas Huth Signed-off-by: Yann E. MORIN --- 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 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot