public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] arm, at91: generate boot.bin file for all all atmel SoC
@ 2014-10-30  8:59 Heiko Schocher
  2014-11-06  0:25 ` Andreas Bießmann
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Heiko Schocher @ 2014-10-30  8:59 UTC (permalink / raw)
  To: u-boot

generate the boot.bin file for all atmel SoC (arm920, arm926, armv7)

Signed-off-by: Heiko Schocher <hs@denx.de>
---

 arch/arm/cpu/armv7/at91/config.mk | 4 +---
 scripts/Makefile.spl              | 4 ++++
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/arch/arm/cpu/armv7/at91/config.mk b/arch/arm/cpu/armv7/at91/config.mk
index 09eab70..db60308 100644
--- a/arch/arm/cpu/armv7/at91/config.mk
+++ b/arch/arm/cpu/armv7/at91/config.mk
@@ -3,8 +3,6 @@
 #
 # SPDX-License-Identifier:	GPL-2.0+
 #
-ifdef CONFIG_SPL_BUILD
-ALL-y	+= boot.bin
-else
+ifndef CONFIG_SPL_BUILD
 ALL-y	+= u-boot.img
 endif
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl
index 7afe437..07db0bf 100644
--- a/scripts/Makefile.spl
+++ b/scripts/Makefile.spl
@@ -181,6 +181,10 @@ ALL-y	+= $(obj)/sunxi-spl.bin
 endif
 endif
 
+ifeq ($(CONFIG_SYS_SOC),"at91")
+ALL-y	+= boot.bin
+endif
+
 all:	$(ALL-y)
 
 ifdef CONFIG_SAMSUNG
-- 
1.8.3.1

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

* [U-Boot] [PATCH] arm, at91: generate boot.bin file for all all atmel SoC
  2014-10-30  8:59 [U-Boot] [PATCH] arm, at91: generate boot.bin file for all all atmel SoC Heiko Schocher
@ 2014-11-06  0:25 ` Andreas Bießmann
  2014-11-06  1:33 ` Masahiro Yamada
  2014-11-17 12:15 ` [U-Boot] arm, at91: generate boot.bin file for " Andreas Bießmann
  2 siblings, 0 replies; 4+ messages in thread
From: Andreas Bießmann @ 2014-11-06  0:25 UTC (permalink / raw)
  To: u-boot



On 30.10.14 09:59, Heiko Schocher wrote:
> generate the boot.bin file for all atmel SoC (arm920, arm926, armv7)
> 
> Signed-off-by: Heiko Schocher <hs@denx.de>

Reviewed-by: Andreas Bie?mann <andreas.devel@googlemail.com>

> ---
> 
>  arch/arm/cpu/armv7/at91/config.mk | 4 +---
>  scripts/Makefile.spl              | 4 ++++
>  2 files changed, 5 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm/cpu/armv7/at91/config.mk b/arch/arm/cpu/armv7/at91/config.mk
> index 09eab70..db60308 100644
> --- a/arch/arm/cpu/armv7/at91/config.mk
> +++ b/arch/arm/cpu/armv7/at91/config.mk
> @@ -3,8 +3,6 @@
>  #
>  # SPDX-License-Identifier:	GPL-2.0+
>  #
> -ifdef CONFIG_SPL_BUILD
> -ALL-y	+= boot.bin
> -else
> +ifndef CONFIG_SPL_BUILD
>  ALL-y	+= u-boot.img
>  endif
> diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl
> index 7afe437..07db0bf 100644
> --- a/scripts/Makefile.spl
> +++ b/scripts/Makefile.spl
> @@ -181,6 +181,10 @@ ALL-y	+= $(obj)/sunxi-spl.bin
>  endif
>  endif
>  
> +ifeq ($(CONFIG_SYS_SOC),"at91")
> +ALL-y	+= boot.bin
> +endif
> +
>  all:	$(ALL-y)
>  
>  ifdef CONFIG_SAMSUNG
> 

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

* [U-Boot] [PATCH] arm, at91: generate boot.bin file for all all atmel SoC
  2014-10-30  8:59 [U-Boot] [PATCH] arm, at91: generate boot.bin file for all all atmel SoC Heiko Schocher
  2014-11-06  0:25 ` Andreas Bießmann
@ 2014-11-06  1:33 ` Masahiro Yamada
  2014-11-17 12:15 ` [U-Boot] arm, at91: generate boot.bin file for " Andreas Bießmann
  2 siblings, 0 replies; 4+ messages in thread
From: Masahiro Yamada @ 2014-11-06  1:33 UTC (permalink / raw)
  To: u-boot


On Thu, 30 Oct 2014 09:59:59 +0100
Heiko Schocher <hs@denx.de> wrote:

> generate the boot.bin file for all atmel SoC (arm920, arm926, armv7)
> 
> Signed-off-by: Heiko Schocher <hs@denx.de>



Reviewed-by: Masahiro Yamada <yamada.m@jp.panasonic.com>

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

* [U-Boot] arm, at91: generate boot.bin file for all atmel SoC
  2014-10-30  8:59 [U-Boot] [PATCH] arm, at91: generate boot.bin file for all all atmel SoC Heiko Schocher
  2014-11-06  0:25 ` Andreas Bießmann
  2014-11-06  1:33 ` Masahiro Yamada
@ 2014-11-17 12:15 ` Andreas Bießmann
  2 siblings, 0 replies; 4+ messages in thread
From: Andreas Bießmann @ 2014-11-17 12:15 UTC (permalink / raw)
  To: u-boot

Dear Heiko Schocher,

Heiko Schocher <hs@denx.de> writes:
>generate the boot.bin file for all atmel SoC (arm920, arm926, armv7)
>
>Signed-off-by: Heiko Schocher <hs@denx.de>
>Reviewed-by: Andreas Bie?mann <andreas.devel@googlemail.com>
>Reviewed-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
>[fix subject]
>Signed-off-by: Andreas Bie?mann <andreas.devel@googlemail.com>
>---
>
> arch/arm/cpu/armv7/at91/config.mk | 4 +---
> scripts/Makefile.spl              | 4 ++++
> 2 files changed, 5 insertions(+), 3 deletions(-)

applied to u-boot-atmel/master with fixed subject, thanks!

Best regards,
Andreas Bie?mann

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

end of thread, other threads:[~2014-11-17 12:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-30  8:59 [U-Boot] [PATCH] arm, at91: generate boot.bin file for all all atmel SoC Heiko Schocher
2014-11-06  0:25 ` Andreas Bießmann
2014-11-06  1:33 ` Masahiro Yamada
2014-11-17 12:15 ` [U-Boot] arm, at91: generate boot.bin file for " Andreas Bießmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox