blob: edd843089b0f79bb42d47c215157ea3ada2d433e [file] [log] [blame]
Magnus Lilja24f8b412009-07-04 10:31:24 +02001OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
2OUTPUT_ARCH(arm)
3ENTRY(_start)
4SECTIONS
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}