Subversion Repositories HelenOS

Rev

Rev 2580 | Rev 3882 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2580 Rev 3007
Line 5... Line 5...
5
	text PT_LOAD FLAGS(5);
5
	text PT_LOAD FLAGS(5);
6
	data PT_LOAD FLAGS(6);
6
	data PT_LOAD FLAGS(6);
7
}
7
}
8
 
8
 
9
SECTIONS {
9
SECTIONS {
10
	. = 0x4000;
10
	. = 0x4000 + SIZEOF_HEADERS;
11
	
11
	
12
	.init ALIGN(0x4000) : SUBALIGN(0x4000) {
12
	.init : {
13
		*(.init);
13
		*(.init);
14
	} :text
14
	} :text
15
	.text : {
15
	.text : {
16
	        *(.text);
16
	        *(.text);
17
		*(.rodata*);
17
		*(.rodata*);
18
	} :text
18
	} :text
19
 
19
 
-
 
20
	. = . + 0x4000;
-
 
21
 
20
	.data : {
22
	.data : {
21
		*(.data);
23
		*(.data);
22
		*(.data.rel*);
24
		*(.data.rel*);
23
	} :data
25
	} :data
24
 
26