Subversion Repositories HelenOS-historic

Rev

Rev 956 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
885 decky 1
/*
2
 *  PPC linker script
3
 *
4
 */
5
 
6
OUTPUT_FORMAT(elf32-powerpc)
7
ENTRY(start)
8
 
9
SECTIONS {
956 decky 10
	.image 0x10000000: AT (0) { 
885 decky 11
		*(BOOTSTRAP)
12
		*(.text);
13
 
14
		*(.rodata);
15
		*(.rodata.*);
16
		*(.data);		/* initialized data */
17
		*(.sdata);
18
		*(.sdata2);
19
		*(.sbss);
20
		*(.bss);		/* uninitialized static variables */	
964 decky 21
		*(COMMON); 		/* global variables */
885 decky 22
	}
23
}