- add missing svn props and fix incorrect line endings from last commit
[fw/openocd] / testing / examples / ledtest-imx31pdk / ldscript
1 SECTIONS
2 {
3         . = 0x80000100;
4         .text : { *(.text) }
5         .data ALIGN(0x10): { *(.data) }
6         .bss ALIGN(0x10): {
7             __bss_start__ = ABSOLUTE(.);
8             *(.bss)
9             . += 0x100;
10         }
11         __bss_end__ = .;
12 PROVIDE (__stack = .);
13         _end = .;
14         .debug_info     0 : { *(.debug_info) }
15         .debug_abbrev   0 : { *(.debug_abbrev) }
16         .debug_line     0 : { *(.debug_line) }
17         .debug_frame    0 : { *(.debug_frame) }
18 }