Subversion Repositories HelenOS

Rev

Rev 3027 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3027 Rev 4134
Line -... Line 1...
-
 
1
ENTRY(start)
-
 
2
 
-
 
3
SECTIONS {
-
 
4
	.boot 0xbfc00000: AT (0) {
-
 
5
		*(BOOTSTRAP);
-
 
6
		*(.text);
-
 
7
		
-
 
8
		*(.rodata);
-
 
9
		*(.rodata.*);
-
 
10
		*(.data);       /* initialized data */
-
 
11
		*(.sdata);
-
 
12
		*(.sdata2);
-
 
13
		*(.sbss);
-
 
14
		*(.scommon);
-
 
15
		*(.bss);        /* uninitialized static variables */
-
 
16
		*(COMMON);      /* global variables */
-
 
17
		*(.reginfo);
-
 
18
[[COMPONENTS]]
-
 
19
	}
-
 
20
}