Subversion Repositories HelenOS-historic

Rev

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

Rev 1022 Rev 1058
Line 5... Line 5...
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
	.boot 0x10000000: AT (0) { 
11
		*(BOOTSTRAP)
11
		*(BOOTSTRAP);
12
		*(REALMODE)
12
		*(REALMODE);
13
		*(.text);
13
		*(.text);
14
		
14
		
15
		*(.rodata);
15
		*(.rodata);
16
		*(.rodata.*);
16
		*(.rodata.*);
17
		*(.data);		/* initialized data */
17
		*(.data);		/* initialized data */
Line 19... Line 19...
19
		*(.sdata2);
19
		*(.sdata2);
20
		*(.sbss);
20
		*(.sbss);
21
		*(.bss);		/* uninitialized static variables */	
21
		*(.bss);		/* uninitialized static variables */	
22
		*(COMMON); 		/* global variables */
22
		*(COMMON); 		/* global variables */
23
	}
23
	}
-
 
24
	
-
 
25
	.image 0x10000000+SIZEOF(.boot): AT (SIZEOF(.boot)) SUBALIGN(4096) { 
-
 
26
		*(.image);
-
 
27
	}
24
}
28
}