Subversion Repositories HelenOS

Rev

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

Rev 2131 Rev 2307
Line 29... Line 29...
29
		hardcoded_load_address = .;
29
		hardcoded_load_address = .;
30
		LONG(KERNEL_LOAD_ADDRESS);
30
		LONG(KERNEL_LOAD_ADDRESS);
31
		*(.rodata*);
31
		*(.rodata*);
32
		*(.sdata);
32
		*(.sdata);
33
		*(.reginfo);
33
		*(.reginfo);
-
 
34
		*(.sbss);
34
		/* Unfortunately IRIX does not allow us
35
		*(.scommon);
35
	         * to include this as a last section :-(
36
		*(.bss);		/* uninitialized static variables */
36
		 * BSS/SBSS addresses will be wrong */
37
		*(COMMON); 		/* global variables */
37
		symbol_table = .;
38
		symbol_table = .;
38
		*(symtab.*);             
39
		*(symtab.*);             
39
	}
40
	}
40
	_gp = . + 0x8000;
41
	_gp = . + 0x8000;
41
	.lit8 : { *(.lit8) }
42
	.lit8 : { *(.lit8) }
42
	.lit4 : { *(.lit4) }
43
	.lit4 : { *(.lit4) }
43
	.sbss : {
-
 
44
		*(.sbss);
-
 
45
		*(.scommon);
-
 
46
	}
-
 
47
	.bss : {
-
 
48
		*(.bss);		/* uninitialized static variables */
-
 
49
		*(COMMON); 		/* global variables */
-
 
50
	}
-
 
51
 
44
 
52
	kdata_end = .;
45
	kdata_end = .;
53
 
46
 
54
	/DISCARD/ : {
47
	/DISCARD/ : {
55
	  *(.mdebug*);
48
	  *(.mdebug*);