Subversion Repositories HelenOS

Rev

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

Rev 210 Rev 218
Line 23... Line 23...
23
		*(.rodata.*);
23
		*(.rodata.*);
24
		*(.data);		/* initialized data */
24
		*(.data);		/* initialized data */
25
		*(.sdata);
25
		*(.sdata);
26
		*(.sdata2);
26
		*(.sdata2);
27
		*(.sbss);
27
		*(.sbss);
-
 
28
		hardcoded_ktext_size = .;
-
 
29
		LONG(ktext_end - ktext_start);	
-
 
30
		hardcoded_kdata_size = .;
-
 
31
		LONG(kdata_end - kdata_start);
-
 
32
		hardcoded_load_address = .;
-
 
33
		LONG(0x80000000);
28
		*(.bss);		/* uninitialized static variables */	
34
		*(.bss);		/* uninitialized static variables */	
29
		*(COMMON); 		/* global variables */
35
		*(COMMON); 		/* global variables */
30
		kdata_end = .;
36
		kdata_end = .;
31
	}
37
	}
32
	
-
 
33
	_hardcoded_ktext_size = ktext_end - ktext_start;
-
 
34
	_hardcoded_kdata_size = kdata_end - kdata_start;
-
 
35
	_hardcoded_load_address = 0x80000000;
-
 
36
}
38
}