public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] omap4_panda: Ignore omap4 SPL called MLO
@ 2011-08-10  5:21 Joe Hershberger
  2011-08-10  5:54 ` Albert ARIBAUD
  2011-09-04  8:00 ` Albert ARIBAUD
  0 siblings, 2 replies; 4+ messages in thread
From: Joe Hershberger @ 2011-08-10  5:21 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Cc: Joe Hershberger <joe.hershberger@gmail.com>
Cc: Sandeep Paulraj <s-paulraj@ti.com>
---
 .gitignore |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore
index dbf545f..f86ec35 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,6 +19,7 @@
 # Top-level generic files
 #
 
+/MLO
 /System.map
 /u-boot
 /u-boot.hex
-- 
1.6.0.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] omap4_panda: Ignore omap4 SPL called MLO
  2011-08-10  5:21 [U-Boot] [PATCH] omap4_panda: Ignore omap4 SPL called MLO Joe Hershberger
@ 2011-08-10  5:54 ` Albert ARIBAUD
  2011-08-10 19:25   ` Joe Hershberger
  2011-09-04  8:00 ` Albert ARIBAUD
  1 sibling, 1 reply; 4+ messages in thread
From: Albert ARIBAUD @ 2011-08-10  5:54 UTC (permalink / raw)
  To: u-boot

Hi Joe,

Le 10/08/2011 07:21, Joe Hershberger a ?crit :
> Signed-off-by: Joe Hershberger<joe.hershberger@ni.com>
> Cc: Joe Hershberger<joe.hershberger@gmail.com>
> Cc: Sandeep Paulraj<s-paulraj@ti.com>
> ---
>   .gitignore |    1 +
>   1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/.gitignore b/.gitignore
> index dbf545f..f86ec35 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -19,6 +19,7 @@
>   # Top-level generic files
>   #
>
> +/MLO
>   /System.map
>   /u-boot
>   /u-boot.hex

Why should this MLO be present at all in the U-Boot tree? Is this file a 
direct or indirect result of building the OMAP Panda board?

Amicalement,
-- 
Albert.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] omap4_panda: Ignore omap4 SPL called MLO
  2011-08-10  5:54 ` Albert ARIBAUD
@ 2011-08-10 19:25   ` Joe Hershberger
  0 siblings, 0 replies; 4+ messages in thread
From: Joe Hershberger @ 2011-08-10 19:25 UTC (permalink / raw)
  To: u-boot

Hi Albert,

On Wed, Aug 10, 2011 at 12:54 AM, Albert ARIBAUD
<albert.u.boot@aribaud.net> wrote:
> Hi Joe,
>
> Le 10/08/2011 07:21, Joe Hershberger a ?crit :
>> Signed-off-by: Joe Hershberger<joe.hershberger@ni.com>
>> Cc: Joe Hershberger<joe.hershberger@gmail.com>
>> Cc: Sandeep Paulraj<s-paulraj@ti.com>
>> ---
>> ? .gitignore | ? ?1 +
>> ? 1 files changed, 1 insertions(+), 0 deletions(-)
>>
>> diff --git a/.gitignore b/.gitignore
>> index dbf545f..f86ec35 100644
>> --- a/.gitignore
>> +++ b/.gitignore
>> @@ -19,6 +19,7 @@
>> ? # Top-level generic files
>> ? #
>>
>> +/MLO
>> ? /System.map
>> ? /u-boot
>> ? /u-boot.hex
>
> Why should this MLO be present at all in the U-Boot tree? Is this file a
> direct or indirect result of building the OMAP Panda board?

It is a direct result of building an OMAP4 board...

arch/arm/cpu/armv7/omap4/config.mk:27:ALL-y     += $(OBJTREE)/MLO

Best regards,
-Joe

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] omap4_panda: Ignore omap4 SPL called MLO
  2011-08-10  5:21 [U-Boot] [PATCH] omap4_panda: Ignore omap4 SPL called MLO Joe Hershberger
  2011-08-10  5:54 ` Albert ARIBAUD
@ 2011-09-04  8:00 ` Albert ARIBAUD
  1 sibling, 0 replies; 4+ messages in thread
From: Albert ARIBAUD @ 2011-09-04  8:00 UTC (permalink / raw)
  To: u-boot

Hi Joe,

Le 10/08/2011 07:21, Joe Hershberger a ?crit :
> Signed-off-by: Joe Hershberger<joe.hershberger@ni.com>
> Cc: Joe Hershberger<joe.hershberger@gmail.com>
> Cc: Sandeep Paulraj<s-paulraj@ti.com>
> ---
>   .gitignore |    1 +
>   1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/.gitignore b/.gitignore
> index dbf545f..f86ec35 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -19,6 +19,7 @@
>   # Top-level generic files
>   #
>
> +/MLO
>   /System.map
>   /u-boot
>   /u-boot.hex

Applied to u-boot-arm/next, thanks.

Amicalement,
-- 
Albert.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-09-04  8:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-10  5:21 [U-Boot] [PATCH] omap4_panda: Ignore omap4 SPL called MLO Joe Hershberger
2011-08-10  5:54 ` Albert ARIBAUD
2011-08-10 19:25   ` Joe Hershberger
2011-09-04  8:00 ` Albert ARIBAUD

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox