summaryrefslogtreecommitdiffhomepage
path: root/src/ppc64/linkscript.ld
blob: da9209c4e47b83c7d8ef189135291974816a1de5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
ENTRY(mp_reset_vector)
SECTIONS
{
  . = 0xf00000;

 .startup . : { ppc64-boot.o(.text) }
 .text : { *(.text) }
 .data : { *(.data) }
 .bss : { *(.bss COMMON) }
 . = ALIGN(8);
 . = . + 0x1000; /* 4kB of stack memory */
 stack_top = .;

 PROVIDE(mp_memory_end = .);
}