summaryrefslogtreecommitdiffhomepage
path: root/src/ppc64/linkscript.ld
blob: e23df047d99adedee8785dad3278f6c0dcc28ffe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
ENTRY(nb_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(nb_memory_end = .);
}