Merge branch 'special-blin' of ../romboot into test
[romboot.git] / elf32-littlearm.lds
blob4d4efb6ad8acf00745966e70e7ca3ad01d1b8fe0
1 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
2 OUTPUT_ARCH(arm)
3 ENTRY(_start)
4 SECTIONS
6         . = 0x00000000;
8         . = ALIGN(4);
9         .text : { *(.text) }
11         . = ALIGN(4);
12         .rodata : { *(.rodata) }
14         . = ALIGN(4);
15         .data : { *(.data) }
17         . = ALIGN(4);
18         .bss : { *(.bss) }