summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
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) }