* [Buildroot] [PATCH v2,1/1] package/criu: disable on aarch64_be
@ 2024-01-14 12:38 Fabrice Fontaine
2024-01-21 16:56 ` Yann E. MORIN
2024-02-04 21:21 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2024-01-14 12:38 UTC (permalink / raw)
To: buildroot; +Cc: Marcus Folkesson, Fabrice Fontaine
armv8a aarch64_be raises the following build failure since the addition
of the package in commit 3e4b479f39c15ffdf307ec8395d856680c727204:
Error (compel/arch/aarch64/src/lib/handle-elf-host.c:30): Unsupported Elf format detected
Fixes:
- http://autobuild.buildroot.org/results/8eaa881a926d138a0bfd3f1076246088994e883f
- http://autobuild.buildroot.org/results/8de9b4d6b26e06f6b4457a31366bdc0d8a8c34ae
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
Changes v1 -> v2 (after review of Yann E. Morin):
- Fix condition to only exclude aarch64_be, not armeb
package/criu/Config.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/criu/Config.in b/package/criu/Config.in
index 4c295acf4f..a5adc0cedd 100644
--- a/package/criu/Config.in
+++ b/package/criu/Config.in
@@ -4,7 +4,7 @@ config BR2_PACKAGE_CRIU_ARCH_SUPPORTS
default y if BR2_ARM_CPU_ARMV6
default y if BR2_ARM_CPU_ARMV7A
default y if BR2_ARM_CPU_ARMV7M
- default y if BR2_ARM_CPU_ARMV8A
+ default y if BR2_ARM_CPU_ARMV8A && !BR2_aarch64_be
default y if BR2_aarch64
default y if BR2_x86_64
default y if BR2_powerpc64le # Only support powerpc64 with LE
--
2.43.0
_______________________________________________
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 v2,1/1] package/criu: disable on aarch64_be
2024-01-14 12:38 [Buildroot] [PATCH v2,1/1] package/criu: disable on aarch64_be Fabrice Fontaine
@ 2024-01-21 16:56 ` Yann E. MORIN
2024-02-04 21:21 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2024-01-21 16:56 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Marcus Folkesson, buildroot
Fabrice, All,
On 2024-01-14 13:38 +0100, Fabrice Fontaine spake thusly:
> armv8a aarch64_be raises the following build failure since the addition
> of the package in commit 3e4b479f39c15ffdf307ec8395d856680c727204:
>
> Error (compel/arch/aarch64/src/lib/handle-elf-host.c:30): Unsupported Elf format detected
>
> Fixes:
> - http://autobuild.buildroot.org/results/8eaa881a926d138a0bfd3f1076246088994e883f
> - http://autobuild.buildroot.org/results/8de9b4d6b26e06f6b4457a31366bdc0d8a8c34ae
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> Changes v1 -> v2 (after review of Yann E. Morin):
> - Fix condition to only exclude aarch64_be, not armeb
>
> package/criu/Config.in | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/criu/Config.in b/package/criu/Config.in
> index 4c295acf4f..a5adc0cedd 100644
> --- a/package/criu/Config.in
> +++ b/package/criu/Config.in
> @@ -4,7 +4,7 @@ config BR2_PACKAGE_CRIU_ARCH_SUPPORTS
> default y if BR2_ARM_CPU_ARMV6
> default y if BR2_ARM_CPU_ARMV7A
> default y if BR2_ARM_CPU_ARMV7M
> - default y if BR2_ARM_CPU_ARMV8A
> + default y if BR2_ARM_CPU_ARMV8A && !BR2_aarch64_be
> default y if BR2_aarch64
> default y if BR2_x86_64
> default y if BR2_powerpc64le # Only support powerpc64 with LE
> --
> 2.43.0
>
> _______________________________________________
> 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
* Re: [Buildroot] [PATCH v2,1/1] package/criu: disable on aarch64_be
2024-01-14 12:38 [Buildroot] [PATCH v2,1/1] package/criu: disable on aarch64_be Fabrice Fontaine
2024-01-21 16:56 ` Yann E. MORIN
@ 2024-02-04 21:21 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-02-04 21:21 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Marcus Folkesson, buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> armv8a aarch64_be raises the following build failure since the addition
> of the package in commit 3e4b479f39c15ffdf307ec8395d856680c727204:
> Error (compel/arch/aarch64/src/lib/handle-elf-host.c:30): Unsupported Elf format detected
> Fixes:
> - http://autobuild.buildroot.org/results/8eaa881a926d138a0bfd3f1076246088994e883f
> - http://autobuild.buildroot.org/results/8de9b4d6b26e06f6b4457a31366bdc0d8a8c34ae
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> Changes v1 -> v2 (after review of Yann E. Morin):
> - Fix condition to only exclude aarch64_be, not armeb
Committed to 2023.11.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
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:[~2024-02-04 21:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-14 12:38 [Buildroot] [PATCH v2,1/1] package/criu: disable on aarch64_be Fabrice Fontaine
2024-01-21 16:56 ` Yann E. MORIN
2024-02-04 21:21 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox