Subversion Repositories HelenOS

Rev

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

Rev 2089 Rev 2516
Line 7... Line 7...
7
 */
7
 */
8
 
8
 
9
ENTRY(kernel_image_start)
9
ENTRY(kernel_image_start)
10
 
10
 
11
SECTIONS {
11
SECTIONS {
12
	.image 0xe000000000100000: AT (0x0000000000100000) { 
12
	.image 0xe000000004404000: AT (0x0000000004404000) { 
13
		ktext_start = .;
13
		ktext_start = .;
14
		*(K_TEXT_START);
14
		*(K_TEXT_START);
15
		*(.text)
15
		*(.text)
16
		ktext_end = .;
16
		ktext_end = .;
17
		
17
		
Line 37... Line 37...
37
		*(*);
37
		*(*);
38
	}
38
	}
39
 
39
 
40
	_hardcoded_ktext_size = ktext_end - ktext_start;
40
	_hardcoded_ktext_size = ktext_end - ktext_start;
41
	_hardcoded_kdata_size = kdata_end - kdata_start;
41
	_hardcoded_kdata_size = kdata_end - kdata_start;
42
	_hardcoded_load_address = 0xe000000000100000;
42
	_hardcoded_load_address = 0xe000000004404000;
43
 
43
 
44
}
44
}