Subversion Repositories HelenOS-historic

Rev

Rev 885 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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