Subversion Repositories HelenOS

Rev

Rev 3023 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3023 Rev 3027
Line -... Line 1...
-
 
1
OUTPUT_FORMAT("elf64-powerpc") 
-
 
2
OUTPUT_ARCH(powerpc:common64) 
-
 
3
ENTRY(start) 
-
 
4
 
-
 
5
SECTIONS {
1
	.boot 0x0000000010000000: AT (0) { 
6
	.boot 0x0000000010000000: AT (0) { 
2
		*(BOOTSTRAP);
7
		*(BOOTSTRAP);
3
		*(REALMODE);
8
		*(REALMODE);
4
		*(.text);
9
		*(.text);
5
		*(.toc);
10
		*(.toc);
Line 11... Line 16...
11
		*(.sdata);
16
		*(.sdata);
12
		*(.sdata2);
17
		*(.sdata2);
13
		*(.sbss);
18
		*(.sbss);
14
		*(.bss);		/* uninitialized static variables */	
19
		*(.bss);		/* uninitialized static variables */	
15
		*(COMMON); 		/* global variables */
20
		*(COMMON); 		/* global variables */
-
 
21
[[COMPONENTS]]
-
 
22
	} 
-
 
23
 
-
 
24
    /DISCARD/ : { 
-
 
25
        *(*); 
-
 
26
    } 
-
 
27
}