summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:25 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:25 +0200
commit7999983385ad17d6d1a44306e64aa3664b2b6e04 (patch)
tree805d1b7051318ff7b59a19185438213446a76d19 /board
parent1a02a7e4b03e1bfdc1aace0ad29630a7ec258776 (diff)
downloadbarebox-7999983385ad17d6d1a44306e64aa3664b2b6e04.tar.gz
barebox-7999983385ad17d6d1a44306e64aa3664b2b6e04.tar.xz
svn_rev_124
Diffstat (limited to 'board')
-rw-r--r--board/eco920/u-boot.lds.S (renamed from board/eco920/u-boot.lds)6
1 files changed, 6 insertions, 0 deletions
diff --git a/board/eco920/u-boot.lds b/board/eco920/u-boot.lds.S
index f4fbf969c3..b1ef8f623a 100644
--- a/board/eco920/u-boot.lds
+++ b/board/eco920/u-boot.lds.S
@@ -21,6 +21,8 @@
* MA 02111-1307 USA
*/
+#include <asm-generic/u-boot.lds.h>
+
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
/*OUTPUT_FORMAT("elf32-arm", "elf32-arm", "elf32-arm")*/
OUTPUT_ARCH(arm)
@@ -50,6 +52,10 @@ SECTIONS
.u_boot_cmd : { *(.u_boot_cmd) }
__u_boot_cmd_end = .;
+ __u_boot_initcalls_start = .;
+ .u_boot_initcalls : { INITCALLS }
+ __u_boot_initcalls_end = .;
+
. = ALIGN(4);
__bss_start = .;
.bss : { *(.bss) }