Subversion Repositories HelenOS

Rev

Rev 3386 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3386 Rev 4718
1
OUTPUT_FORMAT("elf32-littlearm")
1
OUTPUT_FORMAT("elf32-littlearm")
2
ENTRY(start)
2
ENTRY(start)
3
 
3
 
4
SECTIONS {
4
SECTIONS {
5
	.boot 0x0: AT (0) {
5
	.boot 0x0: AT (0) {
6
		*(BOOTSTRAP);
6
		*(BOOTSTRAP);
7
		*(.text);
7
		*(.text);
8
		
8
		
9
		*(.rodata);
9
		*(.rodata);
10
		*(.rodata.*);
10
		*(.rodata.*);
11
		*(.data);		/* initialized data */
11
		*(.data);		/* initialized data */
12
		*(.sdata);
12
		*(.sdata);
13
		*(.sdata2);
13
		*(.sdata2);
14
		*(.sbss);
14
		*(.sbss);
15
		*(.scommon);
15
		*(.scommon);
16
		*(.bss);		/* uninitialized static variables */	
16
		*(.bss);		/* uninitialized static variables */	
17
		*(COMMON); 		/* global variables */
17
		*(COMMON); 		/* global variables */
18
		*(.reginfo);
18
		*(.reginfo);
19
 
19
 
-
 
20
		. = 0x2000;
-
 
21
		*(ST);			/* bootloader stack section */
-
 
22
 
20
		. = 0x4000;
23
		. = 0x4000;
21
		*(PT);			/* page table placed at 0x4000 */
24
		*(PT);			/* page table placed at 0x4000 */
22
[[COMPONENTS]]
25
[[COMPONENTS]]
23
	}
26
	}
24
}
27
}
25
 
28