Subversion Repositories HelenOS

Rev

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

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