All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2, 1/1] package/uboot-tools: fix MKIMAGE_ARCH handling
@ 2021-09-08 16:45 Fabrice Fontaine
  2021-09-11 12:55 ` Yann E. MORIN
  2021-09-13 17:39 ` Peter Korsgaard
  0 siblings, 2 replies; 7+ messages in thread
From: Fabrice Fontaine @ 2021-09-08 16:45 UTC (permalink / raw)
  To: buildroot; +Cc: Matt Weber, Fabrice Fontaine

Fix MKIMAGE_ARCH handling to avoid the following build failure:

/home/buildroot/autobuild/instance-0/output-1/build/host-uboot-tools-2021.07/tools/mkimage -C none -A openrisc -T script -d /home/buildroot/autobuild/instance-0/output-1/boot_script.txt /home/buildroot/autobuild/instance-0/output-1/build/host-uboot-tools-2021.07/tools/boot.scr

Invalid architecture, supported are:
	alpha            Alpha
	arc              ARC
	arm              ARM
	arm64            AArch64
	avr32            AVR32
	blackfin         Blackfin
	ia64             IA64
	invalid          Invalid ARCH
	m68k             M68K
	microblaze       MicroBlaze
	mips             MIPS
	mips64           MIPS 64 Bit
	nds32            NDS32
	nios2            NIOS II
	or1k             OpenRISC 1000
	powerpc          PowerPC
	riscv            RISC-V
	s390             IBM S390
	sandbox          Sandbox
	sh               SuperH
	sparc            SPARC
	sparc64          SPARC 64 Bit
	x86              Intel x86
	x86_64           AMD x86_64
	xtensa           Xtensa

Strangely enough, we only have autobuilder failures since July 2021 even
if or1k must be used since the addition of openriscv support in 2012:
https://github.com/u-boot/u-boot/commit/3ddcaccda3824e1c7f7266d543e4c0eb3ea9851c

Fixes:
 - http://autobuild.buildroot.org/results/c3f0f2a3fb87d74bfdaccf9b94c66f0b5bae7520

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
Changes v1 -> v2:
 - Fix commit message to specify that autobuilder failures are raised
   since July 2021

 package/uboot-tools/uboot-tools.mk | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/package/uboot-tools/uboot-tools.mk b/package/uboot-tools/uboot-tools.mk
index a87956d028..81f60963ec 100644
--- a/package/uboot-tools/uboot-tools.mk
+++ b/package/uboot-tools/uboot-tools.mk
@@ -206,15 +206,15 @@ $(eval $(host-generic-package))
 
 MKIMAGE = $(HOST_DIR)/bin/mkimage
 
-# mkimage supports arm blackfin m68k microblaze mips mips64 nios2 powerpc ppc sh sparc sparc64 x86
+# mkimage supports alpha arc arm arm64 blackfin ia64 invalid m68k microblaze mips mips64 nds32 nios2 or1k powerpc riscv s390 sandbox sh sparc sparc64 x86 x86_64 xtensa
 # KERNEL_ARCH can be arm64 arc arm blackfin m68k microblaze mips nios2 powerpc sh sparc i386 x86_64 xtensa
-# For arm64, arc, xtensa we'll just keep KERNEL_ARCH
-# For mips64, we'll just keep mips
-# For i386 and x86_64, we need to convert
-ifeq ($(KERNEL_ARCH),x86_64)
-MKIMAGE_ARCH = x86
-else ifeq ($(KERNEL_ARCH),i386)
+# For i386, we need to convert
+# For openrisc, we need to convert
+# For others, we'll just keep KERNEL_ARCH
+ifeq ($(KERNEL_ARCH),i386)
 MKIMAGE_ARCH = x86
+else ifeq ($(KERNEL_ARCH),openrisc)
+MKIMAGE_ARCH = or1k
 else
 MKIMAGE_ARCH = $(KERNEL_ARCH)
 endif
-- 
2.33.0

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

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

* Re: [Buildroot] [PATCH v2, 1/1] package/uboot-tools: fix MKIMAGE_ARCH handling
  2021-09-08 16:45 [Buildroot] [PATCH v2, 1/1] package/uboot-tools: fix MKIMAGE_ARCH handling Fabrice Fontaine
@ 2021-09-11 12:55 ` Yann E. MORIN
  2021-09-11 16:07   ` Fabrice Fontaine
  2021-09-13 17:39 ` Peter Korsgaard
  1 sibling, 1 reply; 7+ messages in thread
From: Yann E. MORIN @ 2021-09-11 12:55 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Matt Weber, buildroot

Fabrice, All,

On 2021-09-08 18:45 +0200, Fabrice Fontaine spake thusly:
> Fix MKIMAGE_ARCH handling to avoid the following build failure:
> 
> /home/buildroot/autobuild/instance-0/output-1/build/host-uboot-tools-2021.07/tools/mkimage -C none -A openrisc -T script -d /home/buildroot/autobuild/instance-0/output-1/boot_script.txt /home/buildroot/autobuild/instance-0/output-1/build/host-uboot-tools-2021.07/tools/boot.scr
> 
> Invalid architecture, supported are:
[--SNIP--]
> 
> Strangely enough, we only have autobuilder failures since July 2021 even
> if or1k must be used since the addition of openriscv support in 2012:
> https://github.com/u-boot/u-boot/commit/3ddcaccda3824e1c7f7266d543e4c0eb3ea9851c

... even as or1k has been used since ...

> Fixes:
>  - http://autobuild.buildroot.org/results/c3f0f2a3fb87d74bfdaccf9b94c66f0b5bae7520
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> Changes v1 -> v2:
>  - Fix commit message to specify that autobuilder failures are raised
>    since July 2021
> 
>  package/uboot-tools/uboot-tools.mk | 14 +++++++-------
>  1 file changed, 7 insertions(+), 7 deletions(-)
> 
> diff --git a/package/uboot-tools/uboot-tools.mk b/package/uboot-tools/uboot-tools.mk
> index a87956d028..81f60963ec 100644
> --- a/package/uboot-tools/uboot-tools.mk
> +++ b/package/uboot-tools/uboot-tools.mk
> @@ -206,15 +206,15 @@ $(eval $(host-generic-package))
>  
>  MKIMAGE = $(HOST_DIR)/bin/mkimage
>  
> -# mkimage supports arm blackfin m68k microblaze mips mips64 nios2 powerpc ppc sh sparc sparc64 x86
> +# mkimage supports alpha arc arm arm64 blackfin ia64 invalid m68k microblaze mips mips64 nds32 nios2 or1k powerpc riscv s390 sandbox sh sparc sparc64 x86 x86_64 xtensa
>  # KERNEL_ARCH can be arm64 arc arm blackfin m68k microblaze mips nios2 powerpc sh sparc i386 x86_64 xtensa
> -# For arm64, arc, xtensa we'll just keep KERNEL_ARCH
> -# For mips64, we'll just keep mips
> -# For i386 and x86_64, we need to convert
> -ifeq ($(KERNEL_ARCH),x86_64)
> -MKIMAGE_ARCH = x86
> -else ifeq ($(KERNEL_ARCH),i386)
> +# For i386, we need to convert
> +# For openrisc, we need to convert
> +# For others, we'll just keep KERNEL_ARCH
> +ifeq ($(KERNEL_ARCH),i386)
>  MKIMAGE_ARCH = x86

But then, x86_64 should still be changed to x86, no?

Regards,
Yann E. MORIN.

> +else ifeq ($(KERNEL_ARCH),openrisc)
> +MKIMAGE_ARCH = or1k
>  else
>  MKIMAGE_ARCH = $(KERNEL_ARCH)
>  endif
> -- 
> 2.33.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@lists.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@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2, 1/1] package/uboot-tools: fix MKIMAGE_ARCH handling
  2021-09-11 12:55 ` Yann E. MORIN
@ 2021-09-11 16:07   ` Fabrice Fontaine
  2021-09-11 16:16     ` Yann E. MORIN
  0 siblings, 1 reply; 7+ messages in thread
From: Fabrice Fontaine @ 2021-09-11 16:07 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: Matt Weber, Buildroot Mailing List

Yann,

Le sam. 11 sept. 2021 à 14:55, Yann E. MORIN <yann.morin.1998@free.fr> a écrit :
>
> Fabrice, All,
>
> On 2021-09-08 18:45 +0200, Fabrice Fontaine spake thusly:
> > Fix MKIMAGE_ARCH handling to avoid the following build failure:
> >
> > /home/buildroot/autobuild/instance-0/output-1/build/host-uboot-tools-2021.07/tools/mkimage -C none -A openrisc -T script -d /home/buildroot/autobuild/instance-0/output-1/boot_script.txt /home/buildroot/autobuild/instance-0/output-1/build/host-uboot-tools-2021.07/tools/boot.scr
> >
> > Invalid architecture, supported are:
> [--SNIP--]
> >
> > Strangely enough, we only have autobuilder failures since July 2021 even
> > if or1k must be used since the addition of openriscv support in 2012:
> > https://github.com/u-boot/u-boot/commit/3ddcaccda3824e1c7f7266d543e4c0eb3ea9851c
>
> ... even as or1k has been used since ...
>
> > Fixes:
> >  - http://autobuild.buildroot.org/results/c3f0f2a3fb87d74bfdaccf9b94c66f0b5bae7520
> >
> > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> > ---
> > Changes v1 -> v2:
> >  - Fix commit message to specify that autobuilder failures are raised
> >    since July 2021
> >
> >  package/uboot-tools/uboot-tools.mk | 14 +++++++-------
> >  1 file changed, 7 insertions(+), 7 deletions(-)
> >
> > diff --git a/package/uboot-tools/uboot-tools.mk b/package/uboot-tools/uboot-tools.mk
> > index a87956d028..81f60963ec 100644
> > --- a/package/uboot-tools/uboot-tools.mk
> > +++ b/package/uboot-tools/uboot-tools.mk
> > @@ -206,15 +206,15 @@ $(eval $(host-generic-package))
> >
> >  MKIMAGE = $(HOST_DIR)/bin/mkimage
> >
> > -# mkimage supports arm blackfin m68k microblaze mips mips64 nios2 powerpc ppc sh sparc sparc64 x86
> > +# mkimage supports alpha arc arm arm64 blackfin ia64 invalid m68k microblaze mips mips64 nds32 nios2 or1k powerpc riscv s390 sandbox sh sparc sparc64 x86 x86_64 xtensa
> >  # KERNEL_ARCH can be arm64 arc arm blackfin m68k microblaze mips nios2 powerpc sh sparc i386 x86_64 xtensa
> > -# For arm64, arc, xtensa we'll just keep KERNEL_ARCH
> > -# For mips64, we'll just keep mips
> > -# For i386 and x86_64, we need to convert
> > -ifeq ($(KERNEL_ARCH),x86_64)
> > -MKIMAGE_ARCH = x86
> > -else ifeq ($(KERNEL_ARCH),i386)
> > +# For i386, we need to convert
> > +# For openrisc, we need to convert
> > +# For others, we'll just keep KERNEL_ARCH
> > +ifeq ($(KERNEL_ARCH),i386)
> >  MKIMAGE_ARCH = x86
>
> But then, x86_64 should still be changed to x86, no?
Nope, x86_64 is recognized as a valid architecture, here is an extract
of the commit message:

        x86              Intel x86
        x86_64           AMD x86_64
        xtensa           Xtensa
>
> Regards,
> Yann E. MORIN.
>
> > +else ifeq ($(KERNEL_ARCH),openrisc)
> > +MKIMAGE_ARCH = or1k
> >  else
> >  MKIMAGE_ARCH = $(KERNEL_ARCH)
> >  endif
> > --
> > 2.33.0
> >
> > _______________________________________________
> > buildroot mailing list
> > buildroot@lists.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.  |
> '------------------------------^-------^------------------^--------------------'
Best Regards,

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

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

* Re: [Buildroot] [PATCH v2, 1/1] package/uboot-tools: fix MKIMAGE_ARCH handling
  2021-09-11 16:07   ` Fabrice Fontaine
@ 2021-09-11 16:16     ` Yann E. MORIN
  2021-09-11 16:25       ` Fabrice Fontaine
  0 siblings, 1 reply; 7+ messages in thread
From: Yann E. MORIN @ 2021-09-11 16:16 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Matt Weber, Buildroot Mailing List

Fabrice, All,

On 2021-09-11 18:07 +0200, Fabrice Fontaine spake thusly:
> Le sam. 11 sept. 2021 à 14:55, Yann E. MORIN <yann.morin.1998@free.fr> a écrit :
> > On 2021-09-08 18:45 +0200, Fabrice Fontaine spake thusly:
> > > Fix MKIMAGE_ARCH handling to avoid the following build failure:
[--SNIP--]
> > > -ifeq ($(KERNEL_ARCH),x86_64)
> > > -MKIMAGE_ARCH = x86
> > > -else ifeq ($(KERNEL_ARCH),i386)
> > > +# For i386, we need to convert
> > > +# For openrisc, we need to convert
> > > +# For others, we'll just keep KERNEL_ARCH
> > > +ifeq ($(KERNEL_ARCH),i386)
> > >  MKIMAGE_ARCH = x86
> >
> > But then, x86_64 should still be changed to x86, no?
> Nope, x86_64 is recognized as a valid architecture, here is an extract
> of the commit message:
> 
>         x86              Intel x86
>         x86_64           AMD x86_64
>         xtensa           Xtensa

Ah, right, I overlooked that in the list.

What got me confused was that you specially mention or1k, but not
x86_64, which was also wrong, but we do not seem to have any build
failure associated with that, do we?

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  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@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2, 1/1] package/uboot-tools: fix MKIMAGE_ARCH handling
  2021-09-11 16:16     ` Yann E. MORIN
@ 2021-09-11 16:25       ` Fabrice Fontaine
  2021-09-11 20:35         ` Yann E. MORIN
  0 siblings, 1 reply; 7+ messages in thread
From: Fabrice Fontaine @ 2021-09-11 16:25 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: Matt Weber, Buildroot Mailing List

Le sam. 11 sept. 2021 à 18:16, Yann E. MORIN <yann.morin.1998@free.fr> a écrit :
>
> Fabrice, All,
>
> On 2021-09-11 18:07 +0200, Fabrice Fontaine spake thusly:
> > Le sam. 11 sept. 2021 à 14:55, Yann E. MORIN <yann.morin.1998@free.fr> a écrit :
> > > On 2021-09-08 18:45 +0200, Fabrice Fontaine spake thusly:
> > > > Fix MKIMAGE_ARCH handling to avoid the following build failure:
> [--SNIP--]
> > > > -ifeq ($(KERNEL_ARCH),x86_64)
> > > > -MKIMAGE_ARCH = x86
> > > > -else ifeq ($(KERNEL_ARCH),i386)
> > > > +# For i386, we need to convert
> > > > +# For openrisc, we need to convert
> > > > +# For others, we'll just keep KERNEL_ARCH
> > > > +ifeq ($(KERNEL_ARCH),i386)
> > > >  MKIMAGE_ARCH = x86
> > >
> > > But then, x86_64 should still be changed to x86, no?
> > Nope, x86_64 is recognized as a valid architecture, here is an extract
> > of the commit message:
> >
> >         x86              Intel x86
> >         x86_64           AMD x86_64
> >         xtensa           Xtensa
>
> Ah, right, I overlooked that in the list.
>
> What got me confused was that you specially mention or1k, but not
> x86_64, which was also wrong, but we do not seem to have any build
> failure associated with that, do we?
True, there are no build failures on x86_64.

I'm wondering if those build failures are raised because of toolchain aliases.
Indeed, it seems that openrisc can be defined as a alias to or1k:
https://github.com/u-boot/u-boot/blob/bbcacdf4cd23f2e5deb9ef916096c956c955243d/tools/buildman/README#L196
https://github.com/u-boot/u-boot/blob/a94ab561e2f49a80d8579930e840b810ab1a1330/tools/buildman/bsettings.py#L88

But I didn't find the root cause of these build failures, perhaps the
toolchain-alias is overwritten?
So I gave up and thought that this patch was an acceptable long-term solution.
>
> Regards,
> Yann E. MORIN.
>
> --
> .-----------------.--------------------.------------------.--------------------.
> |  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.  |
> '------------------------------^-------^------------------^--------------------'
Best Regards,

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

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

* Re: [Buildroot] [PATCH v2, 1/1] package/uboot-tools: fix MKIMAGE_ARCH handling
  2021-09-11 16:25       ` Fabrice Fontaine
@ 2021-09-11 20:35         ` Yann E. MORIN
  0 siblings, 0 replies; 7+ messages in thread
From: Yann E. MORIN @ 2021-09-11 20:35 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Matt Weber, Buildroot Mailing List

Fabrice, All,

On 2021-09-11 18:25 +0200, Fabrice Fontaine spake thusly:
> Le sam. 11 sept. 2021 à 18:16, Yann E. MORIN <yann.morin.1998@free.fr> a écrit :
> > On 2021-09-11 18:07 +0200, Fabrice Fontaine spake thusly:
> > > Le sam. 11 sept. 2021 à 14:55, Yann E. MORIN <yann.morin.1998@free.fr> a écrit :
> > > > On 2021-09-08 18:45 +0200, Fabrice Fontaine spake thusly:
> > > > > Fix MKIMAGE_ARCH handling to avoid the following build failure:
> > [--SNIP--]
[--SNIP--]
> I'm wondering if those build failures are raised because of toolchain aliases.
> Indeed, it seems that openrisc can be defined as a alias to or1k:
> https://github.com/u-boot/u-boot/blob/bbcacdf4cd23f2e5deb9ef916096c956c955243d/tools/buildman/README#L196
> https://github.com/u-boot/u-boot/blob/a94ab561e2f49a80d8579930e840b810ab1a1330/tools/buildman/bsettings.py#L88
> 
> But I didn't find the root cause of these build failures, perhaps the
> toolchain-alias is overwritten?
> So I gave up and thought that this patch was an acceptable long-term solution.

Agreed. I believe the patch does the correct thing and is sound. Knowing
the underlying cause would have been nice, but I'm not going to complain
too much. ;-)

Applied to master, thanks.

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  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@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2, 1/1] package/uboot-tools: fix MKIMAGE_ARCH handling
  2021-09-08 16:45 [Buildroot] [PATCH v2, 1/1] package/uboot-tools: fix MKIMAGE_ARCH handling Fabrice Fontaine
  2021-09-11 12:55 ` Yann E. MORIN
@ 2021-09-13 17:39 ` Peter Korsgaard
  1 sibling, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2021-09-13 17:39 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Matt Weber, buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Fix MKIMAGE_ARCH handling to avoid the following build failure:
 > /home/buildroot/autobuild/instance-0/output-1/build/host-uboot-tools-2021.07/tools/mkimage -C none -A openrisc -T script -d /home/buildroot/autobuild/instance-0/output-1/boot_script.txt /home/buildroot/autobuild/instance-0/output-1/build/host-uboot-tools-2021.07/tools/boot.scr

 > Invalid architecture, supported are:
 > 	alpha            Alpha
 > 	arc              ARC
 > 	arm              ARM
 > 	arm64            AArch64
 > 	avr32            AVR32
 > 	blackfin         Blackfin
 > 	ia64             IA64
 > 	invalid          Invalid ARCH
 > 	m68k             M68K
 > 	microblaze       MicroBlaze
 > 	mips             MIPS
 > 	mips64           MIPS 64 Bit
 > 	nds32            NDS32
 > 	nios2            NIOS II
 > 	or1k             OpenRISC 1000
 > 	powerpc          PowerPC
 > 	riscv            RISC-V
 > 	s390             IBM S390
 > 	sandbox          Sandbox
 > 	sh               SuperH
 > 	sparc            SPARC
 > 	sparc64          SPARC 64 Bit
 > 	x86              Intel x86
 > 	x86_64           AMD x86_64
 > 	xtensa           Xtensa

 > Strangely enough, we only have autobuilder failures since July 2021 even
 > if or1k must be used since the addition of openriscv support in 2012:
 > https://github.com/u-boot/u-boot/commit/3ddcaccda3824e1c7f7266d543e4c0eb3ea9851c

 > Fixes:
 >  - http://autobuild.buildroot.org/results/c3f0f2a3fb87d74bfdaccf9b94c66f0b5bae7520

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
 > ---
 > Changes v1 -> v2:
 >  - Fix commit message to specify that autobuilder failures are raised
 >    since July 2021

Committed to 2021.02.x, 2021.05.x and 2021.08.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-09-14 18:16 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-08 16:45 [Buildroot] [PATCH v2, 1/1] package/uboot-tools: fix MKIMAGE_ARCH handling Fabrice Fontaine
2021-09-11 12:55 ` Yann E. MORIN
2021-09-11 16:07   ` Fabrice Fontaine
2021-09-11 16:16     ` Yann E. MORIN
2021-09-11 16:25       ` Fabrice Fontaine
2021-09-11 20:35         ` Yann E. MORIN
2021-09-13 17:39 ` Peter Korsgaard

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.