Subversion Repositories HelenOS

Rev

Rev 3343 | Details | Compare with Previous | Last modification | View Log | RSS feed

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