All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] boot/at91dataflashboot: disable on armeb
@ 2022-06-06 16:34 Fabrice Fontaine
  2022-06-06 19:45 ` Arnout Vandecappelle
  2022-06-09 20:49 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-06-06 16:34 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

at91dataflashboot fails to build on armeb:

/nvmedata/autobuild/instance-6/output-1/per-package/at91dataflashboot/host/bin/armeb-buildroot-linux-uclibcgnueabi-ld -T elf32-littlearm.lds -Ttext 0 -n -o DataflashBoot-1.05.out objs/cstartup_ram.o objs/at45.o objs/com.o objs/dataflash.o objs/div0.o objs/init.o objs/main.o objs/stdio.o objs/asm_isr.o objs/jump.o objs/_udivsi3.o objs/_umodsi3.o objs/led.o
/nvmedata/autobuild/instance-6/output-1/per-package/at91dataflashboot/host/bin/armeb-buildroot-linux-uclibcgnueabi-ld: objs/cstartup_ram.o: compiled for a big endian system and target is little endian

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

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 boot/at91dataflashboot/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/boot/at91dataflashboot/Config.in b/boot/at91dataflashboot/Config.in
index 4055f96410..8b37d84409 100644
--- a/boot/at91dataflashboot/Config.in
+++ b/boot/at91dataflashboot/Config.in
@@ -1,3 +1,3 @@
 config BR2_TARGET_AT91DATAFLASHBOOT
 	bool "AT91 DataFlashBoot"
-	depends on BR2_arm926t
+	depends on BR2_arm && BR2_arm926t
-- 
2.35.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] boot/at91dataflashboot: disable on armeb
  2022-06-06 16:34 [Buildroot] [PATCH 1/1] boot/at91dataflashboot: disable on armeb Fabrice Fontaine
@ 2022-06-06 19:45 ` Arnout Vandecappelle
  2022-06-09 20:49 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2022-06-06 19:45 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot



On 06/06/2022 18:34, Fabrice Fontaine wrote:
> at91dataflashboot fails to build on armeb:
> 
> /nvmedata/autobuild/instance-6/output-1/per-package/at91dataflashboot/host/bin/armeb-buildroot-linux-uclibcgnueabi-ld -T elf32-littlearm.lds -Ttext 0 -n -o DataflashBoot-1.05.out objs/cstartup_ram.o objs/at45.o objs/com.o objs/dataflash.o objs/div0.o objs/init.o objs/main.o objs/stdio.o objs/asm_isr.o objs/jump.o objs/_udivsi3.o objs/_umodsi3.o objs/led.o
> /nvmedata/autobuild/instance-6/output-1/per-package/at91dataflashboot/host/bin/armeb-buildroot-linux-uclibcgnueabi-ld: objs/cstartup_ram.o: compiled for a big endian system and target is little endian
> 
> Fixes:
>   - http://autobuild.buildroot.org/results/e44c042abc1dfb97b4f8a17389d27f842e9dd311
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

  I guess that at91dataflashboot really could be used on big-endian platforms as 
well. However, this is a very dead package, and nobody complained about it 
before. Therefore, applied to master, thanks.

  Regards,
  Arnout

> ---
>   boot/at91dataflashboot/Config.in | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/boot/at91dataflashboot/Config.in b/boot/at91dataflashboot/Config.in
> index 4055f96410..8b37d84409 100644
> --- a/boot/at91dataflashboot/Config.in
> +++ b/boot/at91dataflashboot/Config.in
> @@ -1,3 +1,3 @@
>   config BR2_TARGET_AT91DATAFLASHBOOT
>   	bool "AT91 DataFlashBoot"
> -	depends on BR2_arm926t
> +	depends on BR2_arm && BR2_arm926t
_______________________________________________
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] boot/at91dataflashboot: disable on armeb
  2022-06-06 16:34 [Buildroot] [PATCH 1/1] boot/at91dataflashboot: disable on armeb Fabrice Fontaine
  2022-06-06 19:45 ` Arnout Vandecappelle
@ 2022-06-09 20:49 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-06-09 20:49 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

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

 > at91dataflashboot fails to build on armeb:
 > /nvmedata/autobuild/instance-6/output-1/per-package/at91dataflashboot/host/bin/armeb-buildroot-linux-uclibcgnueabi-ld
 > -T elf32-littlearm.lds -Ttext 0 -n -o DataflashBoot-1.05.out
 > objs/cstartup_ram.o objs/at45.o objs/com.o objs/dataflash.o
 > objs/div0.o objs/init.o objs/main.o objs/stdio.o objs/asm_isr.o
 > objs/jump.o objs/_udivsi3.o objs/_umodsi3.o objs/led.o
 > /nvmedata/autobuild/instance-6/output-1/per-package/at91dataflashboot/host/bin/armeb-buildroot-linux-uclibcgnueabi-ld:
 > objs/cstartup_ram.o: compiled for a big endian system and target is
 > little endian

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

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2022.02.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:[~2022-06-09 20:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-06 16:34 [Buildroot] [PATCH 1/1] boot/at91dataflashboot: disable on armeb Fabrice Fontaine
2022-06-06 19:45 ` Arnout Vandecappelle
2022-06-09 20:49 ` 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.