]> git.sur5r.net Git - openocd/blob - testing/examples/ledtest-imx27ads/ldscript
- add missing svn props from 1323 commit
[openocd] / testing / examples / ledtest-imx27ads / ldscript
1 SECTIONS
2 {
3     . = 0xA0000000;
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 }