Subversion Repositories HelenOS

Rev

Rev 1963 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1963 Rev 1968
1
/*
1
/*
2
 *  MIPS linker script
2
 *  MIPS linker script
3
 *
3
 *
4
 */
4
 */
5
 
5
 
6
OUTPUT_FORMAT(binary)
6
OUTPUT_FORMAT(binary)
7
ENTRY(start)
7
ENTRY(start)
8
 
8
 
9
SECTIONS {
9
SECTIONS {
10
	.image 0xbfc00000: AT (0) { 
10
	.image 0xbfc00000: AT (0) { 
11
		*(BOOTSTRAP)
11
		*(BOOTSTRAP)
12
		*(.text);
12
		*(.text);
13
		
13
		
14
		*(.rodata);
14
		*(.rodata);
15
		*(.rodata.*);
15
		*(.rodata.*);
16
		*(.data);		/* initialized data */
16
		*(.data);		/* initialized data */
17
		*(.sdata);
17
		*(.sdata);
18
		*(.sdata2);
18
		*(.sdata2);
19
		*(.sbss);
19
		*(.sbss);
20
		*(.bss);		/* uninitialized static variables */	
20
		*(.bss);		/* uninitialized static variables */	
21
		*(COMMON); 		/* global variables */
21
		*(COMMON); 		/* global variables */
22
		*(.reginfo);
22
		*(.reginfo);
23
	}
23
	}
24
}
24
}
25
 
25