Subversion Repositories HelenOS-historic

Rev

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

Rev 964 Rev 1022
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 0x10000000: AT (0) { 
10
	.image 0x10000000: AT (0) { 
11
		*(BOOTSTRAP)
11
		*(BOOTSTRAP)
-
 
12
		*(REALMODE)
12
		*(.text);
13
		*(.text);
13
		
14
		
14
		*(.rodata);
15
		*(.rodata);
15
		*(.rodata.*);
16
		*(.rodata.*);
16
		*(.data);		/* initialized data */
17
		*(.data);		/* initialized data */
17
		*(.sdata);
18
		*(.sdata);
18
		*(.sdata2);
19
		*(.sdata2);
19
		*(.sbss);
20
		*(.sbss);
20
		*(.bss);		/* uninitialized static variables */	
21
		*(.bss);		/* uninitialized static variables */	
21
		*(COMMON); 		/* global variables */
22
		*(COMMON); 		/* global variables */
22
	}
23
	}
23
}
24
}
24
 
25