* [U-Boot] [PATCH] hawkboard: Add CONFIG_SPL_LIBGENERIC_SUPPORT
@ 2012-04-02 16:33 Tom Rini
2012-04-02 16:40 ` Sughosh Ganu
2012-04-03 16:21 ` Tom Rini
0 siblings, 2 replies; 5+ messages in thread
From: Tom Rini @ 2012-04-02 16:33 UTC (permalink / raw)
To: u-boot
With older toolchains we need CONFIG_SPL_LIBGENERIC_SUPPORT in order for
CONFIG_SPL_NAND_SUPPORT to link.
Signed-off-by: Tom Rini <trini@ti.com>
---
include/configs/hawkboard.h | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/include/configs/hawkboard.h b/include/configs/hawkboard.h
index 50a1c17..0859371 100644
--- a/include/configs/hawkboard.h
+++ b/include/configs/hawkboard.h
@@ -62,6 +62,7 @@
#define CONFIG_SPL_NAND_SUPPORT
#define CONFIG_SPL_NAND_SIMPLE
#define CONFIG_SPL_NAND_LOAD
+#define CONFIG_SPL_LIBGENERIC_SUPPORT /* for udelay and __div64_32 for NAND */
#define CONFIG_SPL_SERIAL_SUPPORT
#define CONFIG_SPL_LDSCRIPT "board/$(BOARDDIR)/u-boot-spl-hawk.lds"
#define CONFIG_SPL_TEXT_BASE 0xc1080000
--
1.7.0.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH] hawkboard: Add CONFIG_SPL_LIBGENERIC_SUPPORT
2012-04-02 16:33 [U-Boot] [PATCH] hawkboard: Add CONFIG_SPL_LIBGENERIC_SUPPORT Tom Rini
@ 2012-04-02 16:40 ` Sughosh Ganu
2012-04-02 16:44 ` Tom Rini
2012-04-03 16:21 ` Tom Rini
1 sibling, 1 reply; 5+ messages in thread
From: Sughosh Ganu @ 2012-04-02 16:40 UTC (permalink / raw)
To: u-boot
On Mon Apr 02, 2012 at 09:33:43AM -0700, Tom Rini wrote:
> With older toolchains we need CONFIG_SPL_LIBGENERIC_SUPPORT in order for
> CONFIG_SPL_NAND_SUPPORT to link.
>
> Signed-off-by: Tom Rini <trini@ti.com>
> ---
> include/configs/hawkboard.h | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/include/configs/hawkboard.h b/include/configs/hawkboard.h
> index 50a1c17..0859371 100644
> --- a/include/configs/hawkboard.h
> +++ b/include/configs/hawkboard.h
> @@ -62,6 +62,7 @@
> #define CONFIG_SPL_NAND_SUPPORT
> #define CONFIG_SPL_NAND_SIMPLE
> #define CONFIG_SPL_NAND_LOAD
> +#define CONFIG_SPL_LIBGENERIC_SUPPORT /* for udelay and __div64_32 for NAND */
> #define CONFIG_SPL_SERIAL_SUPPORT
> #define CONFIG_SPL_LDSCRIPT "board/$(BOARDDIR)/u-boot-spl-hawk.lds"
> #define CONFIG_SPL_TEXT_BASE 0xc1080000
Simon is adding this as part of the common relocation support patch
series. I think he was going to send an updated version.
-sughosh
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH] hawkboard: Add CONFIG_SPL_LIBGENERIC_SUPPORT
2012-04-02 16:40 ` Sughosh Ganu
@ 2012-04-02 16:44 ` Tom Rini
2012-04-02 17:57 ` Marek Vasut
0 siblings, 1 reply; 5+ messages in thread
From: Tom Rini @ 2012-04-02 16:44 UTC (permalink / raw)
To: u-boot
On Mon, Apr 02, 2012 at 10:10:57PM +0530, Sughosh Ganu wrote:
> On Mon Apr 02, 2012 at 09:33:43AM -0700, Tom Rini wrote:
> > With older toolchains we need CONFIG_SPL_LIBGENERIC_SUPPORT in order for
> > CONFIG_SPL_NAND_SUPPORT to link.
> >
> > Signed-off-by: Tom Rini <trini@ti.com>
> > ---
> > include/configs/hawkboard.h | 1 +
> > 1 files changed, 1 insertions(+), 0 deletions(-)
> >
> > diff --git a/include/configs/hawkboard.h b/include/configs/hawkboard.h
> > index 50a1c17..0859371 100644
> > --- a/include/configs/hawkboard.h
> > +++ b/include/configs/hawkboard.h
> > @@ -62,6 +62,7 @@
> > #define CONFIG_SPL_NAND_SUPPORT
> > #define CONFIG_SPL_NAND_SIMPLE
> > #define CONFIG_SPL_NAND_LOAD
> > +#define CONFIG_SPL_LIBGENERIC_SUPPORT /* for udelay and __div64_32 for NAND */
> > #define CONFIG_SPL_SERIAL_SUPPORT
> > #define CONFIG_SPL_LDSCRIPT "board/$(BOARDDIR)/u-boot-spl-hawk.lds"
> > #define CONFIG_SPL_TEXT_BASE 0xc1080000
>
> Simon is adding this as part of the common relocation support patch
> series. I think he was going to send an updated version.
Well, this is broken in mainline today so I don't want to wait.
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20120402/01707e3c/attachment.pgp>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH] hawkboard: Add CONFIG_SPL_LIBGENERIC_SUPPORT
2012-04-02 16:44 ` Tom Rini
@ 2012-04-02 17:57 ` Marek Vasut
0 siblings, 0 replies; 5+ messages in thread
From: Marek Vasut @ 2012-04-02 17:57 UTC (permalink / raw)
To: u-boot
Dear Tom Rini,
> On Mon, Apr 02, 2012 at 10:10:57PM +0530, Sughosh Ganu wrote:
> > On Mon Apr 02, 2012 at 09:33:43AM -0700, Tom Rini wrote:
> > > With older toolchains we need CONFIG_SPL_LIBGENERIC_SUPPORT in order
> > > for CONFIG_SPL_NAND_SUPPORT to link.
> > >
> > > Signed-off-by: Tom Rini <trini@ti.com>
> > > ---
> > >
> > > include/configs/hawkboard.h | 1 +
> > > 1 files changed, 1 insertions(+), 0 deletions(-)
> > >
> > > diff --git a/include/configs/hawkboard.h b/include/configs/hawkboard.h
> > > index 50a1c17..0859371 100644
> > > --- a/include/configs/hawkboard.h
> > > +++ b/include/configs/hawkboard.h
> > > @@ -62,6 +62,7 @@
> > >
> > > #define CONFIG_SPL_NAND_SUPPORT
> > > #define CONFIG_SPL_NAND_SIMPLE
> > > #define CONFIG_SPL_NAND_LOAD
> > >
> > > +#define CONFIG_SPL_LIBGENERIC_SUPPORT /* for udelay and __div64_32 for
> > > NAND */
> > >
> > > #define CONFIG_SPL_SERIAL_SUPPORT
> > > #define CONFIG_SPL_LDSCRIPT "board/$(BOARDDIR)/u-boot-spl-
hawk.lds"
> > > #define CONFIG_SPL_TEXT_BASE 0xc1080000
> >
> > Simon is adding this as part of the common relocation support patch
> > series. I think he was going to send an updated version.
>
> Well, this is broken in mainline today so I don't want to wait.
Agreed
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH] hawkboard: Add CONFIG_SPL_LIBGENERIC_SUPPORT
2012-04-02 16:33 [U-Boot] [PATCH] hawkboard: Add CONFIG_SPL_LIBGENERIC_SUPPORT Tom Rini
2012-04-02 16:40 ` Sughosh Ganu
@ 2012-04-03 16:21 ` Tom Rini
1 sibling, 0 replies; 5+ messages in thread
From: Tom Rini @ 2012-04-03 16:21 UTC (permalink / raw)
To: u-boot
On Mon, Apr 02, 2012 at 09:33:43AM -0700, Tom Rini wrote:
> With older toolchains we need CONFIG_SPL_LIBGENERIC_SUPPORT in order for
> CONFIG_SPL_NAND_SUPPORT to link.
>
> Signed-off-by: Tom Rini <trini@ti.com>
Queued up for u-boot-ti/master (which I intend to PR Friday).
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20120403/acfb84e4/attachment.pgp>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-04-03 16:21 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-02 16:33 [U-Boot] [PATCH] hawkboard: Add CONFIG_SPL_LIBGENERIC_SUPPORT Tom Rini
2012-04-02 16:40 ` Sughosh Ganu
2012-04-02 16:44 ` Tom Rini
2012-04-02 17:57 ` Marek Vasut
2012-04-03 16:21 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox