Subversion Repositories HelenOS

Rev

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

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