]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - nand_spl/board/freescale/mx31pdk/u-boot.lds
Merge branch 'master' of git://git.denx.de/u-boot-video
[karo-tx-uboot.git] / nand_spl / board / freescale / mx31pdk / u-boot.lds
1 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
2 OUTPUT_ARCH(arm)
3 ENTRY(_start)
4 SECTIONS
5 {
6         . = 0x00000000;
7
8         . = ALIGN(4);
9         .text :
10         {
11                 start.o                 (.text)
12                 lowlevel_init.o         (.text)
13                 nand_boot_fsl_nfc.o     (.text)
14                 *(.text)
15                 . = 2K;
16         }
17
18         . = ALIGN(4);
19         .rodata : { *(.rodata) }
20
21         . = ALIGN(4);
22         .data : { *(.data) }
23
24         . = ALIGN(4);
25         .got : { *(.got) }
26
27         . = .;
28         __u_boot_cmd_start = .;
29         .u_boot_cmd : { *(.u_boot_cmd) }
30         __u_boot_cmd_end = .;
31
32         . = ALIGN(4);
33         __bss_start = .;
34         .bss : { *(.bss) }
35         _end = .;
36 }