From: "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v7 13/19] Makefile: u-boot-with-spl.bin: Fix SPL padding
Date: Sun, 17 Feb 2013 17:16:49 +0100 (CET) [thread overview]
Message-ID: <1954515158.1528901.1361117809127.JavaMail.root@advansee.com> (raw)
In-Reply-To: <1360961665-10693-13-git-send-email-benoit.thebaudeau@advansee.com>
Hi Poonam, Andy,
On Friday, February 15, 2013 9:54:19 PM, Beno?t Th?baudeau wrote:
> PAD_TO is not a generic SPL configuration option, so use CONFIG_SPL_MAX_SIZE
> instead.
>
> We want to use --pad-to with a size, but this option expects an address, so
> use
> u-boot-spl.bin instead of u-boot-spl as the input file in order to get
> addresses
> starting at 0.
>
> Signed-off-by: Beno?t Th?baudeau <benoit.thebaudeau@advansee.com>
> ---
> Changes in v7:
> - Use u-boot-spl.bin instead of u-boot-spl in order to avoid having to use
> --change-addresses.
>
> Changes in v6:
> - Fix size passed to --pad-to thanks to --change-addresses.
>
> Changes in v5: None
> Changes in v4:
> - New patch.
>
> Changes in v3: None
> Changes in v2: None
>
> Makefile | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/Makefile b/Makefile
> index a8c7b7b..317dffc 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -486,7 +486,8 @@ $(obj)u-boot.dis: $(obj)u-boot
> $(OBJDUMP) -d $< > $@
>
> $(obj)u-boot-with-spl.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
> - $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $(obj)spl/u-boot-spl
> $(obj)spl/u-boot-spl-pad.bin
> + $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SPL_MAX_SIZE) \
> + -I binary -O binary $< $(obj)spl/u-boot-spl-pad.bin
> cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $@
> rm $(obj)spl/u-boot-spl-pad.bin
I would like to let you know what is going on, and to get your feedback for this
patch.
include/configs/p1_p2_rdb_pc.h seems to be the only current user of
u-boot-with-spl.bin, triggered for example by the P2020RDB-PC_NAND config.
Before this patch, PAD_TO was used, but there is no such definition for this
board for generic SPL, so this board seems broken, all the more none of the
various values defined for CONFIG_SYS_TEXT_BASE relatively to
CONFIG_SPL_TEXT_BASE would be compatible with an image built by appending U-Boot
to the generic SPL. Can you confirm?
This patch won't fix this board, but I want to make sure that it won't be an
issue for you now or later.
Best regards,
Beno?t
next prev parent reply other threads:[~2013-02-17 16:16 UTC|newest]
Thread overview: 89+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-15 20:54 [U-Boot] [PATCH v7 01/19] nand: mxc: Prepare to add support for i.MX5 Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 02/19] nand: mxc: Add " Benoît Thébaudeau
2013-02-26 15:33 ` Fabio Estevam
2013-02-26 16:08 ` Benoît Thébaudeau
2013-02-26 16:35 ` Fabio Estevam
2013-02-26 16:49 ` Benoît Thébaudeau
2013-02-26 17:03 ` Fabio Estevam
2013-02-26 17:08 ` Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 03/19] imx: mx5: lowlevel_init: Simplify code Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 04/19] imx: mx53ard: Add support for NAND Flash Benoît Thébaudeau
2013-02-26 13:22 ` Fabio Estevam
2013-02-26 13:35 ` Fabio Estevam
2013-02-26 14:21 ` Fabio Estevam
2013-02-26 16:53 ` Benoît Thébaudeau
2013-02-26 17:33 ` Fabio Estevam
2013-02-15 20:54 ` [U-Boot] [PATCH v7 05/19] nand: mxc: Fix debug trace in mxc_nand_read_oob_syndrome() Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 06/19] nand: mxc: Use appropriate page number in syndrome functions Benoît Thébaudeau
2013-02-19 0:30 ` Scott Wood
2013-02-19 11:31 ` Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 07/19] arm: start.S: Fix _TEXT_BASE for SPL Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 08/19] arm: relocate_code() is no longer noreturn Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 09/19] arm1136: Remove redundant relocate_code() return Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 10/19] arm: relocate_code(): Remove useless relocation offset computation Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 11/19] arm: relocate_code(): Use __image_copy_end for end of relocation Benoît Thébaudeau
2013-02-16 18:47 ` Albert ARIBAUD
2013-02-16 19:54 ` Benoît Thébaudeau
2013-02-17 14:30 ` Albert ARIBAUD
2013-02-15 20:54 ` [U-Boot] [PATCH v7 12/19] arm: crt0.S: Remove bogus .globl Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 13/19] Makefile: u-boot-with-spl.bin: Fix SPL padding Benoît Thébaudeau
2013-02-17 16:16 ` Benoît Thébaudeau [this message]
2013-02-18 12:28 ` Benoît Thébaudeau
2013-02-18 17:58 ` Scott Wood
2013-02-18 16:50 ` Tom Rini
2013-02-18 17:26 ` Benoît Thébaudeau
2013-02-18 17:27 ` Tom Rini
2013-02-18 18:00 ` Benoît Thébaudeau
2013-02-18 18:02 ` Scott Wood
2013-02-18 18:22 ` Benoît Thébaudeau
2013-02-18 18:24 ` Scott Wood
2013-02-18 18:52 ` Benoît Thébaudeau
2013-02-18 19:11 ` Scott Wood
2013-02-18 19:30 ` Benoît Thébaudeau
2013-02-22 17:36 ` Fabio Estevam
2013-02-22 18:05 ` Benoît Thébaudeau
2013-02-18 19:37 ` Scott Wood
2013-02-18 19:52 ` Benoît Thébaudeau
2013-02-18 19:47 ` Scott Wood
2013-02-18 20:01 ` Benoît Thébaudeau
2013-02-18 20:06 ` Scott Wood
2013-02-18 20:16 ` Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 14/19] imx: Fix automatic make targets for imx images Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 15/19] nand: mxc: Switch NAND SPL to generic SPL Benoît Thébaudeau
2013-02-22 19:14 ` Fabio Estevam
2013-02-22 19:30 ` Fabio Estevam
2013-02-22 20:09 ` Benoît Thébaudeau
2013-02-22 20:55 ` Troy Kisky
2013-02-22 21:07 ` Fabio Estevam
2013-02-22 23:09 ` Marek Vasut
2013-02-22 21:06 ` Fabio Estevam
2013-02-22 21:13 ` Benoît Thébaudeau
2013-02-22 21:26 ` Fabio Estevam
2013-02-22 21:24 ` Benoît Thébaudeau
2013-02-22 21:30 ` Troy Kisky
2013-02-22 21:27 ` Benoît Thébaudeau
2013-02-22 21:31 ` Benoît Thébaudeau
2013-02-22 21:40 ` Benoît Thébaudeau
2013-02-22 21:53 ` Fabio Estevam
2013-02-22 21:51 ` Fabio Estevam
2013-02-22 22:02 ` Fabio Estevam
2013-02-22 22:03 ` Fabio Estevam
2013-02-22 22:08 ` Fabio Estevam
2013-02-22 22:42 ` Benoît Thébaudeau
2013-02-22 22:56 ` Fabio Estevam
2013-02-22 23:11 ` Marek Vasut
2013-02-22 23:12 ` Benoît Thébaudeau
2013-02-22 23:56 ` Marek Vasut
2013-02-23 0:55 ` Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 16/19] arm926ejs: Remove deprecated and now unused NAND SPL Benoît Thébaudeau
2013-02-17 15:51 ` Benoît Thébaudeau
2013-02-17 16:04 ` Albert ARIBAUD
2013-02-17 16:08 ` Albert ARIBAUD
2013-02-17 16:25 ` Benoît Thébaudeau
2013-02-18 12:24 ` Benoît Thébaudeau
2013-02-18 16:40 ` Tom Rini
2013-02-18 20:39 ` Benoît Thébaudeau
2013-02-18 20:56 ` Tom Rini
2013-02-15 20:54 ` [U-Boot] [PATCH v7 17/19] arm: Remove unused relocate_code() parameters Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 18/19] imx: Add u-boot-with-spl.imx make target Benoît Thébaudeau
2013-02-15 20:54 ` [U-Boot] [PATCH v7 19/19] imx: Add u-boot-with-nand-spl.imx " Benoît Thébaudeau
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=1954515158.1528901.1361117809127.JavaMail.root@advansee.com \
--to=benoit.thebaudeau@advansee.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