Subversion Repositories HelenOS

Rev

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

Rev 3023 Rev 3027
-
 
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);
6
		
11
		
7
		*(.opd);
12
		*(.opd);
8
		*(.rodata);
13
		*(.rodata);
9
		*(.rodata.*);
14
		*(.rodata.*);
10
		*(.data);		/* initialized data */
15
		*(.data);		/* initialized data */
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
}
16
 
28