Subversion Repositories HelenOS

Rev

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

Rev 3024 Rev 3027
-
 
1
OUTPUT_FORMAT("elf32-littlearm")
-
 
2
ENTRY(start)
-
 
3
 
-
 
4
SECTIONS {
1
	.boot 0x0: AT (0) {
5
	.boot 0x0: AT (0) {
2
		*(BOOTSTRAP);
6
		*(BOOTSTRAP);
3
		*(.text);
7
		*(.text);
4
		
8
		
5
		*(.rodata);
9
		*(.rodata);
6
		*(.rodata.*);
10
		*(.rodata.*);
7
		*(.data);		/* initialized data */
11
		*(.data);		/* initialized data */
8
		*(.sdata);
12
		*(.sdata);
9
		*(.sdata2);
13
		*(.sdata2);
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);
15
 
19
 
16
		. = 0x4000;
20
		. = 0x4000;
17
		*(PT);			/* page table placed at 0x4000 */
21
		*(PT);			/* page table placed at 0x4000 */
-
 
22
[[COMPONENTS]]
-
 
23
	}
-
 
24
}
18
 
25