Subversion Repositories HelenOS

Rev

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

Rev Author Line No. Line
4134 decky 1
ENTRY(start)
2
 
3027 decky 3
SECTIONS {
3023 decky 4
	.boot 0xbfc00000: AT (0) {
5
		*(BOOTSTRAP);
6
		*(.text);
7
 
8
		*(.rodata);
9
		*(.rodata.*);
4134 decky 10
		*(.data);       /* initialized data */
3023 decky 11
		*(.sdata);
12
		*(.sdata2);
13
		*(.sbss);
14
		*(.scommon);
4134 decky 15
		*(.bss);        /* uninitialized static variables */
16
		*(COMMON);      /* global variables */
3023 decky 17
		*(.reginfo);
3027 decky 18
[[COMPONENTS]]
19
	}
20
}