summaryrefslogtreecommitdiffstats
path: root/board/ipe337
diff options
context:
space:
mode:
authorSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-09-28 20:35:40 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-09-28 20:35:40 +0200
commita95a54b808e78ff1f1f97f2fb1ad026ee8a2d130 (patch)
tree7de4d6898986c64d87b496d7f79830b9d5868ba9 /board/ipe337
parentc396c4da497bc4cfdee1e98c0a7c6b98dff92ada (diff)
downloadbarebox-a95a54b808e78ff1f1f97f2fb1ad026ee8a2d130.tar.gz
barebox-a95a54b808e78ff1f1f97f2fb1ad026ee8a2d130.tar.xz
add blackfin specific bits for module handling
Diffstat (limited to 'board/ipe337')
-rw-r--r--board/ipe337/u-boot.lds.S7
1 files changed, 6 insertions, 1 deletions
diff --git a/board/ipe337/u-boot.lds.S b/board/ipe337/u-boot.lds.S
index 83d5ffbd80..ab9da10e18 100644
--- a/board/ipe337/u-boot.lds.S
+++ b/board/ipe337/u-boot.lds.S
@@ -43,11 +43,14 @@ MEMORY
SECTIONS
{
- . = 0x00000000;
+ . = TEXT_BASE;
. = ALIGN(4);
.text :
{
+ __stext = .;
+ __text = .;
+ _text = .;
*(.text_entry)
*(.text)
}
@@ -55,6 +58,8 @@ SECTIONS
. = ALIGN(4);
.rodata : { *(.rodata) }
+ __etext = .; /* End of text and rodata section */
+
. = ALIGN(4);
.data : { *(.data) }