From: Tom Rini <trini@ti.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v7 13/19] Makefile: u-boot-with-spl.bin: Fix SPL padding
Date: Mon, 18 Feb 2013 12:27:50 -0500 [thread overview]
Message-ID: <51226496.8070509@ti.com> (raw)
In-Reply-To: <28742411.1551753.1361208406225.JavaMail.root@advansee.com>
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 02/18/2013 12:26 PM, Beno?t Th?baudeau wrote:
[snip]
> But I've just seen that commit 74752ba did something for that in
> u-boot/master, and this commit is not in u-boot-imx/master on which
> I based this series. Why is u-boot-imx/master not sync'ed with
> u-boot/master? How am I supposed to handle patch sets depending on
> several custodian repositories?
I'm not sure why u-boot-imx is out of sync at the moment. My rule of
thumb is to start working on u-boot/master and cherry-pick out things
I need from other places into a -test branch.
I know the kernel folks have to deal with a lot of this as well, but I
think it ends up being a developer choice on what best fits their
needs when they need N different series to be applied for their
starting point.
> Commit 74752ba performs a '--pad-to=$(or $(CONFIG_SPL_PAD_TO),0)'
> on u-boot-spl. I could use this CONFIG_SPL_PAD_TO for this series
> too, but is it really necessary to have both CONFIG_SPL_PAD_TO and
> CONFIG_SPL_MAX_SIZE? In other words, is there any case for which
> CONFIG_SPL_PAD_TO could be different from CONFIG_SPL_TEXT_BASE +
> CONFIG_SPL_MAX_SIZE for a valid reason?
I was wondering along those lines. I don't _think_ we need both
CONFIG_SPL_PAD_TO and CONFIG_SPL_MAX_SIZE, but we can't combine
CONFIG_SPL_MAX_SIZE and CONFIG_SPL_TEXT_BASE as on TI platforms we
start quite well above zero (0x402F0400 on am33xx, etc). That said, I
guess we do need CONFIG_SPL_PAD_TO so that some platforms can do:
#define CONFIG_SPL_PAD_TO (CONFIG_SPL_TEXT_BASE + CONFIG_SPL_MAX_SIZE)
and others just
#define CONFIG_SPL_PAD_TO CONFIG_SPL_MAX_SIZE
- --
Tom
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQIcBAEBAgAGBQJRImSWAAoJENk4IS6UOR1W0DkP/3VBLW0gdRoIfvNHpO3cI0Db
FfjKGQoCgAmrlCE4PyGo2SkkBPl/doxLWYCOr8DJ/BDnjF04r/8NMT/wn/a9xrvv
d5fCpIxQPme356SfMS23LVnTmJR4mOKLdHjJ2QXxyrFXXTnI7W80iPgfslgCTJje
kxbH5chVQq7LYN9ZeynOP9XEZYT9rTcAXG9LVPqStWi73izpMa/D0adc/FqdWfi3
qcstiSxSQyPWmF7O7dRYzs9J4BMcT749NuQmkvbrh64/XL81emynfrYCgBU70QMr
uQV9qxq+zALmUuMTdWRD0ATLQiybuN5Mbam7X4ACAmi8THfSEuUWtS3g0PR9+FH+
/HYICi8l2WDONRCWDcj5PLpQNYaNeunSPj+8q4g4i/OiEO+1rWZqtrgXxcH/WTlT
dz6C6w/YFhfCakKwB8r2+5H3GyIpoDgbqsCfxI8LTNDA69/zXohbH6uDNMqWDPAV
IS0+7Z3iC+MPmfkAXL2vz02CoiUiX2YwgYrhVrmPAbbsHSLndh2oAmGkdl8Hc2BK
zhCKW75bv1flXwBIE3skocKZTDTjiMsMKoqosiFtSIaXQsn6Zz7YYh4ZpCNE0U3C
P3GRpeotnXk0jRp6DOGKceWfVQLbY3rAZKWoMAjTujGIh3YfXRVU+KWLqi8APjNK
a2aPpMFx6Oy72BQvV11W
=zJru
-----END PGP SIGNATURE-----
next prev parent reply other threads:[~2013-02-18 17:27 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
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 [this message]
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=51226496.8070509@ti.com \
--to=trini@ti.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