aboutsummaryrefslogtreecommitdiff
path: root/testing/examples/ledtest-imx31pdk/ldscript
blob: d6f60d6fad60ba911e7d0ce3256ae0d733c45505 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SECTIONS
{
	. = 0x80000100;
	.text : { *(.text) }
	.data ALIGN(0x10): { *(.data) }
	.bss ALIGN(0x10): {
	    __bss_start__ = ABSOLUTE(.);
	    *(.bss)
	    . += 0x100;
        }
	__bss_end__ = .;
PROVIDE (__stack = .);
	_end = .;
	.debug_info     0 : { *(.debug_info) }
   	.debug_abbrev   0 : { *(.debug_abbrev) }
   	.debug_line     0 : { *(.debug_line) }
   	.debug_frame    0 : { *(.debug_frame) }
}