Subversion Repositories HelenOS

Rev

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

Rev 3343 Rev 3742
1
OUTPUT_FORMAT("elf64-ia64-little")
1
OUTPUT_FORMAT("elf64-ia64-little")
2
ENTRY(start)
2
ENTRY(start)
3
 
3
 
4
SECTIONS {
4
SECTIONS {
5
	.boot 0x4400000: AT (0x4400000) {
5
	.boot 0x4400000: AT (0x4400000) {
6
		*(BOOTSTRAP);
6
		*(BOOTSTRAP);
7
[[COMPONENTS]]		
7
[[COMPONENTS]]		
8
		. = ALIGN (16384);
8
		. = ALIGN (16384);
9
		*(.text);
9
		*(.text);
10
		*(.rodata);
10
		*(.rodata);
11
		*(.rodata.*);
11
		*(.rodata.*);
12
		*(.data);               /* initialized data */
12
		*(.data);               /* initialized data */
13
		_got = . ;
13
		_got = . ;
14
		*(.got .got.*);               
14
		*(.got .got.*);               
-
 
15
		*(.bss);                /* uninitialized static variables */
-
 
16
		*(COMMON);
-
 
17
	}
-
 
18
 
-
 
19
	.sboot : {
15
		*(.sdata);
20
		*(.sdata);
16
		*(.sdata2);
21
		*(.sdata2);
17
		*(.sbss);
22
		*(.sbss);
18
		*(.bss);                /* uninitialized static variables */
-
 
19
		*(COMMON);
-
 
20
	}
23
	}
21
	
24
	
22
	/DISCARD/ : {
25
	/DISCARD/ : {
23
		*(.comment);
26
		*(.comment);
24
		*(.note*);
27
		*(.note*);
25
	}
28
	}
26
}
29
}
27
 
30