Subversion Repositories HelenOS-historic

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1157 decky 1
/*
2
 *  PPC linker script
3
 *
4
 */
5
 
6
OUTPUT_FORMAT(elf64-powerpc)
7
ENTRY(start)
8
 
9
SECTIONS {
10
	.boot 0x0000000010000000: AT (0) { 
11
		*(BOOTSTRAP);
12
		*(REALMODE);
13
		*(.text);
14
 
15
		*(.rodata);
16
		*(.rodata.*);
17
		*(.data);		/* initialized data */
18
		*(.sdata);
19
		*(.sdata2);
20
		*(.sbss);
21
		*(.bss);		/* uninitialized static variables */	
22
		*(COMMON); 		/* global variables */
23
 
24
		. = ALIGN(4096);
25
		*(.image);
26
	}
27
}