public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss
@ 2011-11-30 17:05 Simon Schwarz
  2011-11-30 17:12 ` Simon Schwarz
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Simon Schwarz @ 2011-11-30 17:05 UTC (permalink / raw)
  To: u-boot

This moves CONFIG_SYS_TEXT_BASE one MB after beginning of SD-RAM. Move
CONFIG_SYS_SPL_MALLOC_START to have one MB of free space for the u-boot image.

CONFIG_SYS_TEXT_BASE was in the middle of the bss-section. This was the reason
for the problems with MMC boot described here:
http://article.gmane.org/gmane.comp.boot-loaders.u-boot/118711

Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>
Cc: s-paulraj at ti.com
Cc: wd at denx.de
Cc: trini at ti.com
---
 include/configs/devkit8000.h |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/include/configs/devkit8000.h b/include/configs/devkit8000.h
index e1743dc..b29d564 100644
--- a/include/configs/devkit8000.h
+++ b/include/configs/devkit8000.h
@@ -37,7 +37,8 @@
 #define CONFIG_OMAP3430		1	/* which is in a 3430 */
 #define CONFIG_OMAP3_DEVKIT8000	1	/* working with DevKit8000 */
 
-#define	CONFIG_SYS_TEXT_BASE	0x80008000
+/* 1 MB into SD-RAM to leave place for .bss-section */
+#define	CONFIG_SYS_TEXT_BASE	0x80100000
 
 #define CONFIG_SDRC	/* The chip has SDRC controller */
 
@@ -359,7 +360,7 @@
 #define CONFIG_SYS_NAND_U_BOOT_OFFS	0x80000
 #define CONFIG_SYS_NAND_U_BOOT_SIZE	0x200000
 
-#define CONFIG_SYS_SPL_MALLOC_START	0x80108000
+#define CONFIG_SYS_SPL_MALLOC_START	0x80200000
 #define CONFIG_SYS_SPL_MALLOC_SIZE	0x100000	/* 1 MB */
 
 #endif /* __CONFIG_H */
-- 
1.7.4.1

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

* [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss
  2011-11-30 17:05 [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss Simon Schwarz
@ 2011-11-30 17:12 ` Simon Schwarz
  2011-11-30 17:20 ` Tom Rini
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 11+ messages in thread
From: Simon Schwarz @ 2011-11-30 17:12 UTC (permalink / raw)
  To: u-boot

This fixes the current mmc booting problems with devkit8000.

I would recommend to include it into the upcoming release.

Regards
Simon

2011/11/30 Simon Schwarz <simonschwarzcor@googlemail.com>:
> This moves CONFIG_SYS_TEXT_BASE one MB after beginning of SD-RAM. Move
> CONFIG_SYS_SPL_MALLOC_START to have one MB of free space for the u-boot image.
>
> CONFIG_SYS_TEXT_BASE was in the middle of the bss-section. This was the reason
> for the problems with MMC boot described here:
> http://article.gmane.org/gmane.comp.boot-loaders.u-boot/118711
>
> Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>
> Cc: s-paulraj at ti.com
> Cc: wd at denx.de
> Cc: trini at ti.com
> ---
> ?include/configs/devkit8000.h | ? ?5 +++--
> ?1 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/include/configs/devkit8000.h b/include/configs/devkit8000.h
> index e1743dc..b29d564 100644
> --- a/include/configs/devkit8000.h
> +++ b/include/configs/devkit8000.h
> @@ -37,7 +37,8 @@
> ?#define CONFIG_OMAP3430 ? ? ? ? ? ? ? ?1 ? ? ? /* which is in a 3430 */
> ?#define CONFIG_OMAP3_DEVKIT8000 ? ? ? ?1 ? ? ? /* working with DevKit8000 */
>
> -#define ? ? ? ?CONFIG_SYS_TEXT_BASE ? ?0x80008000
> +/* 1 MB into SD-RAM to leave place for .bss-section */
> +#define ? ? ? ?CONFIG_SYS_TEXT_BASE ? ?0x80100000
>
> ?#define CONFIG_SDRC ? ?/* The chip has SDRC controller */
>
> @@ -359,7 +360,7 @@
> ?#define CONFIG_SYS_NAND_U_BOOT_OFFS ? ?0x80000
> ?#define CONFIG_SYS_NAND_U_BOOT_SIZE ? ?0x200000
>
> -#define CONFIG_SYS_SPL_MALLOC_START ? ?0x80108000
> +#define CONFIG_SYS_SPL_MALLOC_START ? ?0x80200000
> ?#define CONFIG_SYS_SPL_MALLOC_SIZE ? ? 0x100000 ? ? ? ?/* 1 MB */
>
> ?#endif /* __CONFIG_H */
> --
> 1.7.4.1
>

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

* [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss
  2011-11-30 17:05 [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss Simon Schwarz
  2011-11-30 17:12 ` Simon Schwarz
@ 2011-11-30 17:20 ` Tom Rini
  2011-12-01  7:49 ` Igor Grinberg
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 11+ messages in thread
From: Tom Rini @ 2011-11-30 17:20 UTC (permalink / raw)
  To: u-boot

On 11/30/2011 10:05 AM, Simon Schwarz wrote:
> This moves CONFIG_SYS_TEXT_BASE one MB after beginning of SD-RAM. Move
> CONFIG_SYS_SPL_MALLOC_START to have one MB of free space for the u-boot image.
> 
> CONFIG_SYS_TEXT_BASE was in the middle of the bss-section. This was the reason
> for the problems with MMC boot described here:

Ah-ha!  Good catch.  Note that on beagle/evm we do:
/*
 * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
 * 64 bytes before this address should be set aside for u-boot.img's
 * header. That is 0x800FFFC0--0x80100000 should not be used for any
 * other needs.
 */
#define CONFIG_SYS_TEXT_BASE            0x80100000
#define CONFIG_SYS_SPL_MALLOC_START     0x80208000
#define CONFIG_SYS_SPL_MALLOC_SIZE      0x100000

So (a) I like the bigger comment and (b) I guess we don't need quite as
much space set aside?

-- 
Tom

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

* [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss
  2011-11-30 17:05 [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss Simon Schwarz
  2011-11-30 17:12 ` Simon Schwarz
  2011-11-30 17:20 ` Tom Rini
@ 2011-12-01  7:49 ` Igor Grinberg
  2011-12-01  9:07   ` Simon Schwarz
  2011-12-01  8:47 ` Thomas Weber
  2011-12-06  9:16 ` [U-Boot] [PATCH V2] " Simon Schwarz
  4 siblings, 1 reply; 11+ messages in thread
From: Igor Grinberg @ 2011-12-01  7:49 UTC (permalink / raw)
  To: u-boot

Hi Simon,

On 11/30/11 19:05, Simon Schwarz wrote:
> This moves CONFIG_SYS_TEXT_BASE one MB after beginning of SD-RAM. Move
> CONFIG_SYS_SPL_MALLOC_START to have one MB of free space for the u-boot image.
> 
> CONFIG_SYS_TEXT_BASE was in the middle of the bss-section. This was the reason
> for the problems with MMC boot described here:
> http://article.gmane.org/gmane.comp.boot-loaders.u-boot/118711

Does this affect only boards having the SPL support?
Can you, please, shed some more light on this?


-- 
Regards,
Igor.

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

* [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss
  2011-11-30 17:05 [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss Simon Schwarz
                   ` (2 preceding siblings ...)
  2011-12-01  7:49 ` Igor Grinberg
@ 2011-12-01  8:47 ` Thomas Weber
  2011-12-06  9:16 ` [U-Boot] [PATCH V2] " Simon Schwarz
  4 siblings, 0 replies; 11+ messages in thread
From: Thomas Weber @ 2011-12-01  8:47 UTC (permalink / raw)
  To: u-boot

Hello Simon,

On 30.11.2011 18:05, Simon Schwarz wrote:
> This moves CONFIG_SYS_TEXT_BASE one MB after beginning of SD-RAM. Move
> CONFIG_SYS_SPL_MALLOC_START to have one MB of free space for the u-boot image.
> 
> CONFIG_SYS_TEXT_BASE was in the middle of the bss-section. This was the reason
> for the problems with MMC boot described here:
> http://article.gmane.org/gmane.comp.boot-loaders.u-boot/118711
> 
> Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>
> Cc: s-paulraj at ti.com
> Cc: wd at denx.de
> Cc: trini at ti.com
> ---
>  include/configs/devkit8000.h |    5 +++--
>  1 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/include/configs/devkit8000.h b/include/configs/devkit8000.h
> index e1743dc..b29d564 100644
> --- a/include/configs/devkit8000.h
> +++ b/include/configs/devkit8000.h
> @@ -37,7 +37,8 @@
>  #define CONFIG_OMAP3430		1	/* which is in a 3430 */
>  #define CONFIG_OMAP3_DEVKIT8000	1	/* working with DevKit8000 */
>  
> -#define	CONFIG_SYS_TEXT_BASE	0x80008000
> +/* 1 MB into SD-RAM to leave place for .bss-section */
> +#define	CONFIG_SYS_TEXT_BASE	0x80100000
>  
>  #define CONFIG_SDRC	/* The chip has SDRC controller */
>  
> @@ -359,7 +360,7 @@
>  #define CONFIG_SYS_NAND_U_BOOT_OFFS	0x80000
>  #define CONFIG_SYS_NAND_U_BOOT_SIZE	0x200000
>  
> -#define CONFIG_SYS_SPL_MALLOC_START	0x80108000
> +#define CONFIG_SYS_SPL_MALLOC_START	0x80200000
>  #define CONFIG_SYS_SPL_MALLOC_SIZE	0x100000	/* 1 MB */
>  
>  #endif /* __CONFIG_H */

Tested-by: Thomas Weber <weber@corscience.de>

boots from NAND and from MMC now, on both Devkit8000 versions (128 MiB
and 256 MiB).


Thomas

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

* [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss
  2011-12-01  7:49 ` Igor Grinberg
@ 2011-12-01  9:07   ` Simon Schwarz
  2011-12-01 10:03     ` Igor Grinberg
  0 siblings, 1 reply; 11+ messages in thread
From: Simon Schwarz @ 2011-12-01  9:07 UTC (permalink / raw)
  To: u-boot

Hi Igor,

this only affects Boards with SPL support - and only devkit8000.

The SPL has its .bss section in SD-RAM while the rest is in SRAM -
CONFIG_SYS_TEXT_BASE was in the same area as .bss. This caused trouble
as the header of the u-boot.img was written before
CONFIG_SYS_TEXT_BASE. In the described case this messed with the
pointer to the mcc datastructure - therefore the u-boot.img file
failed to be read.

Regards
Simon

2011/12/1 Igor Grinberg <grinberg@compulab.co.il>:
> Hi Simon,
>
> On 11/30/11 19:05, Simon Schwarz wrote:
>> This moves CONFIG_SYS_TEXT_BASE one MB after beginning of SD-RAM. Move
>> CONFIG_SYS_SPL_MALLOC_START to have one MB of free space for the u-boot image.
>>
>> CONFIG_SYS_TEXT_BASE was in the middle of the bss-section. This was the reason
>> for the problems with MMC boot described here:
>> http://article.gmane.org/gmane.comp.boot-loaders.u-boot/118711
>
> Does this affect only boards having the SPL support?
> Can you, please, shed some more light on this?
>
>
> --
> Regards,
> Igor.

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

* [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss
  2011-12-01  9:07   ` Simon Schwarz
@ 2011-12-01 10:03     ` Igor Grinberg
  2011-12-01 10:16       ` Aneesh V
  0 siblings, 1 reply; 11+ messages in thread
From: Igor Grinberg @ 2011-12-01 10:03 UTC (permalink / raw)
  To: u-boot

On 12/01/11 11:07, Simon Schwarz wrote:
> Hi Igor,
> 
> this only affects Boards with SPL support - and only devkit8000.
> 
> The SPL has its .bss section in SD-RAM while the rest is in SRAM -
> CONFIG_SYS_TEXT_BASE was in the same area as .bss. This caused trouble
> as the header of the u-boot.img was written before
> CONFIG_SYS_TEXT_BASE. In the described case this messed with the
> pointer to the mcc datastructure - therefore the u-boot.img file
> failed to be read.

Thank you very much for the explanation.

So as to my understanding, what happens is:
1) The SPL initializes the SDRAM
2) Copies its .bss section to SDRAM
3) Starts loading the U-Boot image and overwrites the .bss section
Is the above correct?

If it is, then why do we need the .bss in SDRAM?
Aren't there enough space in SRAM?
Also, is this what X-Loader did in first place?

-- 
Regards,
Igor.

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

* [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss
  2011-12-01 10:03     ` Igor Grinberg
@ 2011-12-01 10:16       ` Aneesh V
  2011-12-01 11:04         ` Igor Grinberg
  0 siblings, 1 reply; 11+ messages in thread
From: Aneesh V @ 2011-12-01 10:16 UTC (permalink / raw)
  To: u-boot

Hi Igor,

On Thursday 01 December 2011 03:33 PM, Igor Grinberg wrote:
> On 12/01/11 11:07, Simon Schwarz wrote:
>> Hi Igor,
>>
>> this only affects Boards with SPL support - and only devkit8000.
>>
>> The SPL has its .bss section in SD-RAM while the rest is in SRAM -
>> CONFIG_SYS_TEXT_BASE was in the same area as .bss. This caused trouble
>> as the header of the u-boot.img was written before
>> CONFIG_SYS_TEXT_BASE. In the described case this messed with the
>> pointer to the mcc datastructure - therefore the u-boot.img file
>> failed to be read.
>
> Thank you very much for the explanation.
>
> So as to my understanding, what happens is:
> 1) The SPL initializes the SDRAM
> 2) Copies its .bss section to SDRAM
> 3) Starts loading the U-Boot image and overwrites the .bss section
> Is the above correct?
>
> If it is, then why do we need the .bss in SDRAM?

U-Boot FAT implementation uses 3 buffers each of size 64 KB.

> Aren't there enough space in SRAM?

SRAM doesn't have space for such huge buffers.

> Also, is this what X-Loader did in first place?

Yes, x-loader had these buffers in SDRAM too. But instead of putting
the .bss in SDRAM, x-loader made these huge arrays into pointer
variables that were then made to point to the SDRAM.

br,
Aneesh

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

* [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss
  2011-12-01 10:16       ` Aneesh V
@ 2011-12-01 11:04         ` Igor Grinberg
  0 siblings, 0 replies; 11+ messages in thread
From: Igor Grinberg @ 2011-12-01 11:04 UTC (permalink / raw)
  To: u-boot

On 12/01/11 12:16, Aneesh V wrote:
> Hi Igor,
> 
> On Thursday 01 December 2011 03:33 PM, Igor Grinberg wrote:
>> On 12/01/11 11:07, Simon Schwarz wrote:
>>> Hi Igor,
>>>
>>> this only affects Boards with SPL support - and only devkit8000.
>>>
>>> The SPL has its .bss section in SD-RAM while the rest is in SRAM -
>>> CONFIG_SYS_TEXT_BASE was in the same area as .bss. This caused trouble
>>> as the header of the u-boot.img was written before
>>> CONFIG_SYS_TEXT_BASE. In the described case this messed with the
>>> pointer to the mcc datastructure - therefore the u-boot.img file
>>> failed to be read.
>>
>> Thank you very much for the explanation.
>>
>> So as to my understanding, what happens is:
>> 1) The SPL initializes the SDRAM
>> 2) Copies its .bss section to SDRAM
>> 3) Starts loading the U-Boot image and overwrites the .bss section
>> Is the above correct?
>>
>> If it is, then why do we need the .bss in SDRAM?
> 
> U-Boot FAT implementation uses 3 buffers each of size 64 KB.
> 
>> Aren't there enough space in SRAM?
> 
> SRAM doesn't have space for such huge buffers.
> 
>> Also, is this what X-Loader did in first place?
> 
> Yes, x-loader had these buffers in SDRAM too. But instead of putting
> the .bss in SDRAM, x-loader made these huge arrays into pointer
> variables that were then made to point to the SDRAM.

Ok. Now I get the picture of what's going on there.
Never had the time to go through the code to figure this out...
Thanks for the explanation, Aneesh.


-- 
Regards,
Igor.

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

* [U-Boot] [PATCH V2] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss
  2011-11-30 17:05 [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss Simon Schwarz
                   ` (3 preceding siblings ...)
  2011-12-01  8:47 ` Thomas Weber
@ 2011-12-06  9:16 ` Simon Schwarz
  2011-12-06 13:52   ` Thomas Weber
  4 siblings, 1 reply; 11+ messages in thread
From: Simon Schwarz @ 2011-12-06  9:16 UTC (permalink / raw)
  To: u-boot

This moves CONFIG_SYS_TEXT_BASE one MB after beginning of SD-RAM. Move
CONFIG_SYS_SPL_MALLOC_START to have one MB of free space for the u-boot
image.

CONFIG_SYS_TEXT_BASE was in the middle of the bss-section. This was the
reason for the problems with MMC boot described here:
http://article.gmane.org/gmane.comp.boot-loaders.u-boot/118711

Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>
---
V2 changes:
CHG added a more comprehensive comment on CONFIG_SYS_TEXT_BASE
CHG Moved CONFIG_SYS_SPL_MALLOC_START from 0x80200000 to 0x80208000 to be
  		consistent with beagle board

Cc: s-paulraj at ti.com
Cc: trini at ti.com
Cc: albert.u.boot at aribaud.net
---
 include/configs/devkit8000.h |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/include/configs/devkit8000.h b/include/configs/devkit8000.h
index e1743dc..a2e1d2d 100644
--- a/include/configs/devkit8000.h
+++ b/include/configs/devkit8000.h
@@ -37,7 +37,13 @@
 #define CONFIG_OMAP3430		1	/* which is in a 3430 */
 #define CONFIG_OMAP3_DEVKIT8000	1	/* working with DevKit8000 */
 
-#define	CONFIG_SYS_TEXT_BASE	0x80008000
+/*
+ * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
+ * 64 bytes before this address should be set aside for u-boot.img's
+ * header. That is 0x800FFFC0--0x80100000 should not be used for any
+ * other needs.
+ */
+#define	CONFIG_SYS_TEXT_BASE	0x80100000
 
 #define CONFIG_SDRC	/* The chip has SDRC controller */
 
@@ -359,7 +365,7 @@
 #define CONFIG_SYS_NAND_U_BOOT_OFFS	0x80000
 #define CONFIG_SYS_NAND_U_BOOT_SIZE	0x200000
 
-#define CONFIG_SYS_SPL_MALLOC_START	0x80108000
+#define CONFIG_SYS_SPL_MALLOC_START	0x80208000
 #define CONFIG_SYS_SPL_MALLOC_SIZE	0x100000	/* 1 MB */
 
 #endif /* __CONFIG_H */
-- 
1.7.4.1

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

* [U-Boot] [PATCH V2] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss
  2011-12-06  9:16 ` [U-Boot] [PATCH V2] " Simon Schwarz
@ 2011-12-06 13:52   ` Thomas Weber
  0 siblings, 0 replies; 11+ messages in thread
From: Thomas Weber @ 2011-12-06 13:52 UTC (permalink / raw)
  To: u-boot

On 06.12.2011 10:16, Simon Schwarz wrote:
> This moves CONFIG_SYS_TEXT_BASE one MB after beginning of SD-RAM. Move
> CONFIG_SYS_SPL_MALLOC_START to have one MB of free space for the u-boot
> image.
> 
> CONFIG_SYS_TEXT_BASE was in the middle of the bss-section. This was the
> reason for the problems with MMC boot described here:
> http://article.gmane.org/gmane.comp.boot-loaders.u-boot/118711
> 
> Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>
> ---
> V2 changes:
> CHG added a more comprehensive comment on CONFIG_SYS_TEXT_BASE
> CHG Moved CONFIG_SYS_SPL_MALLOC_START from 0x80200000 to 0x80208000 to be
>   		consistent with beagle board
> 
> Cc: s-paulraj at ti.com
> Cc: trini at ti.com
> Cc: albert.u.boot at aribaud.net
> ---
>  include/configs/devkit8000.h |   10 ++++++++--
>  1 files changed, 8 insertions(+), 2 deletions(-)
> 
> diff --git a/include/configs/devkit8000.h b/include/configs/devkit8000.h
> index e1743dc..a2e1d2d 100644
> --- a/include/configs/devkit8000.h
> +++ b/include/configs/devkit8000.h
> @@ -37,7 +37,13 @@
>  #define CONFIG_OMAP3430		1	/* which is in a 3430 */
>  #define CONFIG_OMAP3_DEVKIT8000	1	/* working with DevKit8000 */
>  
> -#define	CONFIG_SYS_TEXT_BASE	0x80008000
> +/*
> + * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
> + * 64 bytes before this address should be set aside for u-boot.img's
> + * header. That is 0x800FFFC0--0x80100000 should not be used for any
> + * other needs.
> + */
> +#define	CONFIG_SYS_TEXT_BASE	0x80100000
>  
>  #define CONFIG_SDRC	/* The chip has SDRC controller */
>  
> @@ -359,7 +365,7 @@
>  #define CONFIG_SYS_NAND_U_BOOT_OFFS	0x80000
>  #define CONFIG_SYS_NAND_U_BOOT_SIZE	0x200000
>  
> -#define CONFIG_SYS_SPL_MALLOC_START	0x80108000
> +#define CONFIG_SYS_SPL_MALLOC_START	0x80208000
>  #define CONFIG_SYS_SPL_MALLOC_SIZE	0x100000	/* 1 MB */
>  
>  #endif /* __CONFIG_H */

Tested-by: Thomas Weber <weber@corscience.de>

Thanks,
Thomas

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

end of thread, other threads:[~2011-12-06 13:52 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-30 17:05 [U-Boot] [PATCH] devkit8000: Move CONFIG_SYS_TEXT_BASE out of bss Simon Schwarz
2011-11-30 17:12 ` Simon Schwarz
2011-11-30 17:20 ` Tom Rini
2011-12-01  7:49 ` Igor Grinberg
2011-12-01  9:07   ` Simon Schwarz
2011-12-01 10:03     ` Igor Grinberg
2011-12-01 10:16       ` Aneesh V
2011-12-01 11:04         ` Igor Grinberg
2011-12-01  8:47 ` Thomas Weber
2011-12-06  9:16 ` [U-Boot] [PATCH V2] " Simon Schwarz
2011-12-06 13:52   ` Thomas Weber

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