From: Eugen.Hristev at microchip.com <Eugen.Hristev@microchip.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 08/11] Makefile.spl: Move generate AT91SAM NAND image boot.bin to spl directory
Date: Mon, 25 Mar 2019 14:22:03 +0000 [thread overview]
Message-ID: <8c6db021-563f-4bbb-3ea8-d5c5be78ef03@microchip.com> (raw)
In-Reply-To: <20190319155632.5680-8-sr@denx.de>
On 19.03.2019 17:56, Stefan Roese wrote:
> External E-Mail
>
>
> This patch moves the AT91SAM NAND booting SPL image "boot.bin" which
> includes the ECC values from the root directory into the spl directory,
> where all SPL related images are located.
Hi Stefan,
Yes, indeed, but someone may be using this fact? Removing it might break
someone's expectations (scripts). Can we make a copy to spl/ dir and
leave the boot.bin in the root as-is ?
Unless someone has objections of course...
Eugen
>
> Signed-off-by: Stefan Roese <sr@denx.de>
> Cc: Heiko Schocher <hs@denx.de>
> Cc: Andreas Bießmann <andreas@biessmann.org>
> Cc: Eugen Hristev <eugen.hristev@microchip.com>
> ---
> scripts/Makefile.spl | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl
> index 9d5921606e..37be18da4b 100644
> --- a/scripts/Makefile.spl
> +++ b/scripts/Makefile.spl
> @@ -179,10 +179,10 @@ MKIMAGEFLAGS_boot.bin = -T atmelimage
> ifeq ($(CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER),y)
> MKIMAGEFLAGS_boot.bin += -n $(shell $(obj)/../tools/atmel_pmecc_params)
>
> -boot.bin: $(obj)/../tools/atmel_pmecc_params
> +$(obj)/boot.bin: $(obj)/../tools/atmel_pmecc_params
> endif
>
> -boot.bin: $(obj)/u-boot-spl.bin FORCE
> +$(obj)/boot.bin: $(obj)/u-boot-spl.bin FORCE
> $(call if_changed,mkimage)
> else
> ifdef CONFIG_ARCH_ZYNQ
> @@ -225,7 +225,7 @@ endif
> endif
>
> ifeq ($(CONFIG_SYS_SOC),"at91")
> -ALL-y += boot.bin
> +ALL-y += $(obj)/boot.bin
> endif
>
> ALL-$(CONFIG_SPL_X86_16BIT_INIT) += $(obj)/u-boot-x86-16bit-spl.bin
>
next prev parent reply other threads:[~2019-03-25 14:22 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-19 15:56 [U-Boot] [PATCH 01/11] arm: at91: Makefile: Compile lowlevel_init only when really necessary Stefan Roese
2019-03-19 15:56 ` [U-Boot] [PATCH 02/11] arm: at91: spl_at91.c: Call spl_early_init() if OF_CONTROL is enabled Stefan Roese
2019-03-19 15:56 ` [U-Boot] [PATCH 03/11] serial: atmel_usart: Use fixed clock value in SPL version Stefan Roese
2019-03-20 7:25 ` Eugen.Hristev at microchip.com
2019-03-20 7:30 ` Stefan Roese
2019-03-25 14:27 ` Eugen.Hristev at microchip.com
2019-03-25 14:57 ` Stefan Roese
2019-03-19 15:56 ` [U-Boot] [PATCH 04/11] watchdog: Handle SPL build with watchdog disabled Stefan Roese
2019-03-20 7:30 ` Eugen.Hristev at microchip.com
2019-03-20 7:33 ` Stefan Roese
2019-03-20 7:41 ` Eugen.Hristev at microchip.com
2019-03-20 7:48 ` Stefan Roese
2019-03-20 8:06 ` Eugen.Hristev at microchip.com
2019-03-20 8:10 ` Stefan Roese
2019-03-19 15:56 ` [U-Boot] [PATCH 05/11] watchdog: at91sam9_wdt: Fix WDT setup in at91_wdt_start() Stefan Roese
2019-03-19 15:56 ` [U-Boot] [PATCH 06/11] arm: at91: Enable watchdog support Stefan Roese
2019-03-21 10:23 ` Eugen.Hristev at microchip.com
2019-03-21 12:00 ` Stefan Roese
2019-03-21 12:07 ` Eugen.Hristev at microchip.com
2019-03-19 15:56 ` [U-Boot] [PATCH 07/11] arm: at91: arm926ejs/u-boot-spl.lds: Add _image_binary_end to SPL lds Stefan Roese
2019-03-19 15:56 ` [U-Boot] [PATCH 08/11] Makefile.spl: Move generate AT91SAM NAND image boot.bin to spl directory Stefan Roese
2019-03-25 14:22 ` Eugen.Hristev at microchip.com [this message]
2019-03-25 14:24 ` Stefan Roese
2019-03-26 7:06 ` Heiko Schocher
2019-03-19 15:56 ` [U-Boot] [PATCH 09/11] Makefile: Add Kconfig option CONFIG_SPL_IMAGE to select the SPL binary Stefan Roese
2019-03-19 15:56 ` [U-Boot] [PATCH 10/11] arm: at91: siemens: Add support to generate combined SPL+U-Boot image Stefan Roese
2019-03-19 15:56 ` [U-Boot] [PATCH 11/11] arm: at91: Add gardena-gateway-at91sam support Stefan Roese
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8c6db021-563f-4bbb-3ea8-d5c5be78ef03@microchip.com \
--to=eugen.hristev@microchip.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox