]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - nand_spl/board/freescale/mx31pdk/u-boot.lds
MX31: Add NAND SPL boot support to i.MX31 PDK board.
[people/ms/u-boot.git] / nand_spl / board / freescale / mx31pdk / u-boot.lds
diff --git a/nand_spl/board/freescale/mx31pdk/u-boot.lds b/nand_spl/board/freescale/mx31pdk/u-boot.lds
new file mode 100644 (file)
index 0000000..edd8430
--- /dev/null
@@ -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 = .;
+}