Subversion Repositories HelenOS

Rev

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

Rev Author Line No. Line
3027 decky 1
OUTPUT_FORMAT("elf64-sparc")
2
ENTRY(start)
3
 
4
SECTIONS {
5
	.boot 0x4000: AT (0x4000) {
6
		*(BOOTSTRAP);
7
		*(.text);
8
		*(.rodata);
9
		*(.rodata.*);
10
		*(.data);               /* initialized data */
11
		*(.sdata);
12
		*(.sdata2);
13
		*(.sbss);
14
		*(.bss);                /* uninitialized static variables */
15
		*(COMMON);
16
[[COMPONENTS]]
17
	}
18
 
19
	/DISCARD/ : {
20
		*(.comment);
21
		*(.note*);
22
	}
23
}