Subversion Repositories HelenOS

Rev

Rev 2465 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2465 Rev 3917
Line 4... Line 4...
4
 *  kernel text
4
 *  kernel text
5
 *  kernel data
5
 *  kernel data
6
 *  
6
 *
7
 */
7
 */
8
 
8
 
-
 
9
#define KERNEL_LOAD_ADDRESS 0x80200000
-
 
10
 
9
OUTPUT_ARCH(arm)
11
OUTPUT_ARCH(arm)
10
ENTRY(kernel_image_start) 
12
ENTRY(kernel_image_start)
11
 
13
 
12
 
-
 
13
SECTIONS {
14
SECTIONS {
14
	. = KERNEL_LOAD_ADDRESS;
15
	. = KERNEL_LOAD_ADDRESS;
15
	.text : {
16
	.text : {
16
		ktext_start = .;
17
		ktext_start = .;
17
		*(.text);
18
		*(.text);
Line 46... Line 47...
46
	  *(.mdebug*);
47
	  *(.mdebug*);
47
	  *(.pdr);
48
	  *(.pdr);
48
	  *(.comment);
49
	  *(.comment);
49
	  *(.note);
50
	  *(.note);
50
	}
51
	}
51
 
-
 
52
}
52
}