Subversion Repositories HelenOS-historic

Rev

Rev 869 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 869 Rev 1422
Line 19... Line 19...
19
		
19
		
20
		kdata_start = .;
20
		kdata_start = .;
21
		*(K_DATA_START)
21
		*(K_DATA_START)
22
		*(.rodata .rodata.*)
22
		*(.rodata .rodata.*)
23
		*(.opd)
23
		*(.opd)
24
		*(.data)
24
		*(.data .data.*)
25
		*(.got .got.*)
25
		*(.got .got.*)
26
		*(.sdata)
26
		*(.sdata)
27
		*(.sbss)
27
		*(.sbss)
28
		*(.scommon)
28
		*(.scommon)
29
		*(.bss)
29
		*(.bss)
Line 33... Line 33...
33
                *(symtab.*);            /* Symbol table, must be LAST symbol!*/
33
                *(symtab.*);            /* Symbol table, must be LAST symbol!*/
34
 
34
 
35
		kdata_end = .;
35
		kdata_end = .;
36
	}
36
	}
37
 
37
 
-
 
38
	/DISCARD/ : {
-
 
39
		*(*);
-
 
40
	}
-
 
41
 
38
	_hardcoded_ktext_size = ktext_end - ktext_start;
42
	_hardcoded_ktext_size = ktext_end - ktext_start;
39
	_hardcoded_kdata_size = kdata_end - kdata_start;
43
	_hardcoded_kdata_size = kdata_end - kdata_start;
40
	_hardcoded_load_address = 0xe000000000100000;
44
	_hardcoded_load_address = 0xe000000000100000;
41
 
45
 
42
}
46
}