From d08e5ca301b69ab77ecdd34e2b06aee30d6057d1 Mon Sep 17 00:00:00 2001 From: Magnus Lilja Date: Sat, 4 Jul 2009 10:31:24 +0200 Subject: MX31: Add NAND SPL boot support to i.MX31 PDK board. Signed-off-by: Magnus Lilja --- nand_spl/board/freescale/mx31pdk/u-boot.lds | 36 +++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 nand_spl/board/freescale/mx31pdk/u-boot.lds (limited to '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 index 0000000000..edd843089b --- /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 = .; +} -- cgit