All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/kvm-unit-tests: add more arm support
@ 2022-03-22 17:08 Cornelia Huck
  2022-03-23 10:15 ` Thomas Huth
  2022-03-23 11:13 ` Yann E. MORIN
  0 siblings, 2 replies; 3+ messages in thread
From: Cornelia Huck @ 2022-03-22 17:08 UTC (permalink / raw)
  To: buildroot; +Cc: Cornelia Huck, Matt Weber, Cyril Bur

Add some more cortexes with VHE, and enable aarch64.

Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---

Resent because I was subscribed with a different email address.
Sorry about the spam.

---
 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 e470dd6157f0..b084375e62e9 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
 
diff --git a/package/kvm-unit-tests/kvm-unit-tests.mk b/package/kvm-unit-tests/kvm-unit-tests.mk
index d610442e039f..d72eba02bc3b 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
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/kvm-unit-tests: add more arm support
  2022-03-22 17:08 [Buildroot] [PATCH 1/1] package/kvm-unit-tests: add more arm support Cornelia Huck
@ 2022-03-23 10:15 ` Thomas Huth
  2022-03-23 11:13 ` Yann E. MORIN
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Huth @ 2022-03-23 10:15 UTC (permalink / raw)
  To: Cornelia Huck, buildroot; +Cc: Matt Weber, Cyril Bur

Am Tue, 22 Mar 2022 18:08:00 +0100
schrieb Cornelia Huck <cohuck@redhat.com>:

> Add some more cortexes with VHE, and enable aarch64.
> 
> Signed-off-by: Cornelia Huck <cohuck@redhat.com>
> ---
> 
> Resent because I was subscribed with a different email address.
> Sorry about the spam.
> 
> ---
>  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 e470dd6157f0..b084375e62e9 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
>  
> diff --git a/package/kvm-unit-tests/kvm-unit-tests.mk b/package/kvm-unit-tests/kvm-unit-tests.mk
> index d610442e039f..d72eba02bc3b 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

Reviewed-by: Thomas Huth <huth@tuxfamily.org>

Note: This will likely have a contextual conflict with :

 https://lists.buildroot.org/pipermail/buildroot/2022-March/638940.html

... but I hope this will easy to sort out.

 Thomas
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/kvm-unit-tests: add more arm support
  2022-03-22 17:08 [Buildroot] [PATCH 1/1] package/kvm-unit-tests: add more arm support Cornelia Huck
  2022-03-23 10:15 ` Thomas Huth
@ 2022-03-23 11:13 ` Yann E. MORIN
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2022-03-23 11:13 UTC (permalink / raw)
  To: Cornelia Huck; +Cc: Cyril Bur, Matt Weber, buildroot

Cornelia, All,

On 2022-03-22 18:08 +0100, Cornelia Huck spake thusly:
> Add some more cortexes with VHE, and enable aarch64.
> 
> Signed-off-by: Cornelia Huck <cohuck@redhat.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
> 
> Resent because I was subscribed with a different email address.
> Sorry about the spam.
> 
> ---
>  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 e470dd6157f0..b084375e62e9 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
>  
> diff --git a/package/kvm-unit-tests/kvm-unit-tests.mk b/package/kvm-unit-tests/kvm-unit-tests.mk
> index d610442e039f..d72eba02bc3b 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
> -- 
> 2.34.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-03-23 11:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-22 17:08 [Buildroot] [PATCH 1/1] package/kvm-unit-tests: add more arm support Cornelia Huck
2022-03-23 10:15 ` Thomas Huth
2022-03-23 11:13 ` Yann E. MORIN

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.