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("binary") 
-
 
2
ENTRY(start) 
-
 
3
 
-
 
4
SECTIONS {
1
	.boot 0xbfc00000: AT (0) {
5
	.boot 0xbfc00000: AT (0) {
2
		*(BOOTSTRAP);
6
		*(BOOTSTRAP);
3
		*(.text);
7
		*(.text);
4
		
8
		
5
		*(.rodata);
9
		*(.rodata);
Line 10... Line 14...
10
		*(.sbss);
14
		*(.sbss);
11
		*(.scommon);
15
		*(.scommon);
12
		*(.bss);		/* uninitialized static variables */	
16
		*(.bss);		/* uninitialized static variables */	
13
		*(COMMON); 		/* global variables */
17
		*(COMMON); 		/* global variables */
14
		*(.reginfo);
18
		*(.reginfo);
-
 
19
[[COMPONENTS]]
-
 
20
	}
-
 
21
}