* [U-Boot] [PATCH v1] arm: include config.h in vectors.S
@ 2014-07-14 5:01 Chris Packham
2014-08-05 8:30 ` Chris Packham
0 siblings, 1 reply; 6+ messages in thread
From: Chris Packham @ 2014-07-14 5:01 UTC (permalink / raw)
To: u-boot
In order to use configuration flags it is necessary to include config.h.
Without this arm targets that use CONFIG_USE_IRQ or CONFIG_SPL_BUILD
won't get the correct code.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
---
Resent without corporate disclaimer
arch/arm/lib/vectors.S | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/lib/vectors.S b/arch/arm/lib/vectors.S
index e6538ef..a8b6c53 100644
--- a/arch/arm/lib/vectors.S
+++ b/arch/arm/lib/vectors.S
@@ -12,6 +12,7 @@
*
* SPDX-License-Identifier: GPL-2.0+
*/
+#include <config.h>
/*
*************************************************************************
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH v1] arm: include config.h in vectors.S
2014-07-14 5:01 [U-Boot] [PATCH v1] arm: include config.h in vectors.S Chris Packham
@ 2014-08-05 8:30 ` Chris Packham
2014-08-20 6:23 ` Christian Riesch
2014-08-20 9:33 ` Albert ARIBAUD
0 siblings, 2 replies; 6+ messages in thread
From: Chris Packham @ 2014-08-05 8:30 UTC (permalink / raw)
To: u-boot
On 14/07/14 17:01, Chris Packham wrote:
> In order to use configuration flags it is necessary to include config.h.
> Without this arm targets that use CONFIG_USE_IRQ or CONFIG_SPL_BUILD
> won't get the correct code.
>
> Signed-off-by: Chris Packham <judge.packham@gmail.com>
> ---
> Resent without corporate disclaimer
>
> arch/arm/lib/vectors.S | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/lib/vectors.S b/arch/arm/lib/vectors.S
> index e6538ef..a8b6c53 100644
> --- a/arch/arm/lib/vectors.S
> +++ b/arch/arm/lib/vectors.S
> @@ -12,6 +12,7 @@
> *
> * SPDX-License-Identifier: GPL-2.0+
> */
> +#include <config.h>
>
> /*
> *************************************************************************
>
Ping?
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH v1] arm: include config.h in vectors.S
2014-08-05 8:30 ` Chris Packham
@ 2014-08-20 6:23 ` Christian Riesch
2014-08-20 9:33 ` Albert ARIBAUD
1 sibling, 0 replies; 6+ messages in thread
From: Christian Riesch @ 2014-08-20 6:23 UTC (permalink / raw)
To: u-boot
Hi Albert,
On Tue, Aug 5, 2014 at 10:30 AM, Chris Packham <judge.packham@gmail.com> wrote:
> On 14/07/14 17:01, Chris Packham wrote:
>> In order to use configuration flags it is necessary to include config.h.
>> Without this arm targets that use CONFIG_USE_IRQ or CONFIG_SPL_BUILD
>> won't get the correct code.
>>
>> Signed-off-by: Chris Packham <judge.packham@gmail.com>
I submitted a similar patch on July 7, see
http://patchwork.ozlabs.org/patch/367453/. Please apply either of them
to get the issue fixed.
Thanks,
Christian
>> ---
>> Resent without corporate disclaimer
>>
>> arch/arm/lib/vectors.S | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/arch/arm/lib/vectors.S b/arch/arm/lib/vectors.S
>> index e6538ef..a8b6c53 100644
>> --- a/arch/arm/lib/vectors.S
>> +++ b/arch/arm/lib/vectors.S
>> @@ -12,6 +12,7 @@
>> *
>> * SPDX-License-Identifier: GPL-2.0+
>> */
>> +#include <config.h>
>>
>> /*
>> *************************************************************************
>>
>
> Ping?
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH v1] arm: include config.h in vectors.S
2014-08-05 8:30 ` Chris Packham
2014-08-20 6:23 ` Christian Riesch
@ 2014-08-20 9:33 ` Albert ARIBAUD
1 sibling, 0 replies; 6+ messages in thread
From: Albert ARIBAUD @ 2014-08-20 9:33 UTC (permalink / raw)
To: u-boot
Hi Chris,
On Tue, 05 Aug 2014 20:30:36 +1200, Chris Packham
<judge.packham@gmail.com> wrote:
> On 14/07/14 17:01, Chris Packham wrote:
> > In order to use configuration flags it is necessary to include config.h.
> > Without this arm targets that use CONFIG_USE_IRQ or CONFIG_SPL_BUILD
> > won't get the correct code.
> >
> > Signed-off-by: Chris Packham <judge.packham@gmail.com>
> > ---
> > Resent without corporate disclaimer
> >
> > arch/arm/lib/vectors.S | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/arch/arm/lib/vectors.S b/arch/arm/lib/vectors.S
> > index e6538ef..a8b6c53 100644
> > --- a/arch/arm/lib/vectors.S
> > +++ b/arch/arm/lib/vectors.S
> > @@ -12,6 +12,7 @@
> > *
> > * SPDX-License-Identifier: GPL-2.0+
> > */
> > +#include <config.h>
> >
> > /*
> > *************************************************************************
> >
>
> Ping?
Underway -- will get in Real Soon Now.
Amicalement,
--
Albert.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH v1] arm: include config.h in vectors.S
@ 2014-07-14 4:53 Chris Packham
2014-07-14 4:55 ` Chris Packham
0 siblings, 1 reply; 6+ messages in thread
From: Chris Packham @ 2014-07-14 4:53 UTC (permalink / raw)
To: u-boot
In order to use configuration flags it is necessary to include config.h.
Without this arm targets that use CONFIG_USE_IRQ or CONFIG_SPL_BUILD
won't get the correct code.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
---
arch/arm/lib/vectors.S | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/lib/vectors.S b/arch/arm/lib/vectors.S
index e6538ef..a8b6c53 100644
--- a/arch/arm/lib/vectors.S
+++ b/arch/arm/lib/vectors.S
@@ -12,6 +12,7 @@
*
* SPDX-License-Identifier: GPL-2.0+
*/
+#include <config.h>
/*
*************************************************************************
--
2.0.0.rc2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH v1] arm: include config.h in vectors.S
2014-07-14 4:53 Chris Packham
@ 2014-07-14 4:55 ` Chris Packham
0 siblings, 0 replies; 6+ messages in thread
From: Chris Packham @ 2014-07-14 4:55 UTC (permalink / raw)
To: u-boot
On Mon, Jul 14, 2014 at 4:53 PM, Chris Packham <judge.packham@gmail.com> wrote:
> In order to use configuration flags it is necessary to include config.h.
> Without this arm targets that use CONFIG_USE_IRQ or CONFIG_SPL_BUILD
> won't get the correct code.
>
> Signed-off-by: Chris Packham <judge.packham@gmail.com>
> ---
>
> arch/arm/lib/vectors.S | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/lib/vectors.S b/arch/arm/lib/vectors.S
> index e6538ef..a8b6c53 100644
> --- a/arch/arm/lib/vectors.S
> +++ b/arch/arm/lib/vectors.S
> @@ -12,6 +12,7 @@
> *
> * SPDX-License-Identifier: GPL-2.0+
> */
> +#include <config.h>
>
> /*
> *************************************************************************
> --
> 2.0.0.rc2
>
>
> NOTICE: This message contains privileged and confidential
> information intended only for the use of the addressee
> named above. If you are not the intended recipient of
> this message you are hereby notified that you must not
> disseminate, copy or take any action in reliance on it.
> If you have received this message in error please
> notify Allied Telesis Labs Ltd immediately.
> Any views expressed in this message are those of the
> individual sender, except where the sender has the
> authority to issue and specifically states them to
> be the views of Allied Telesis Labs.
Grr. I'll resend via a decent smtp gateway.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-08-20 9:33 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-14 5:01 [U-Boot] [PATCH v1] arm: include config.h in vectors.S Chris Packham
2014-08-05 8:30 ` Chris Packham
2014-08-20 6:23 ` Christian Riesch
2014-08-20 9:33 ` Albert ARIBAUD
-- strict thread matches above, loose matches on Subject: below --
2014-07-14 4:53 Chris Packham
2014-07-14 4:55 ` Chris Packham
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox