summaryrefslogtreecommitdiff
path: root/nand_spl/board/freescale/mx31pdk/u-boot.lds
diff options
context:
space:
mode:
authorMagnus Lilja <lilja.magnus@gmail.com>2009-07-04 10:31:24 +0200
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2009-07-06 21:53:18 +0200
commitd08e5ca301b69ab77ecdd34e2b06aee30d6057d1 (patch)
tree664a681d606a8bc689b7c4381d720bb3debf7998 /nand_spl/board/freescale/mx31pdk/u-boot.lds
parent78eabb90b793fafe875a7469526d1715fa56cbb4 (diff)
MX31: Add NAND SPL boot support to i.MX31 PDK board.
Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
Diffstat (limited to 'nand_spl/board/freescale/mx31pdk/u-boot.lds')
-rw-r--r--nand_spl/board/freescale/mx31pdk/u-boot.lds36
1 files changed, 36 insertions, 0 deletions
diff --git a/nand_spl/board/freescale/mx31pdk/u-boot.lds b/nand_spl/board/freescale/mx31pdk/u-boot.lds
new file mode 100644
index 000000000..edd843089
--- /dev/null
+++ b/nand_spl/board/freescale/mx31pdk/u-boot.lds
@@ -0,0 +1,36 @@
+OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
+OUTPUT_ARCH(arm)
+ENTRY(_start)
+SECTIONS
+{
+ . = 0x00000000;
+
+ . = ALIGN(4);
+ .text :
+ {
+ start.o (.text)
+ lowlevel_init.o (.text)
+ nand_boot_fsl_nfc.o (.text)
+ *(.text)
+ . = 2K;
+ }
+
+ . = ALIGN(4);
+ .rodata : { *(.rodata) }
+
+ . = ALIGN(4);
+ .data : { *(.data) }
+
+ . = ALIGN(4);
+ .got : { *(.got) }
+
+ . = .;
+ __u_boot_cmd_start = .;
+ .u_boot_cmd : { *(.u_boot_cmd) }
+ __u_boot_cmd_end = .;
+
+ . = ALIGN(4);
+ __bss_start = .;
+ .bss : { *(.bss) }
+ _end = .;
+}