Subversion Repositories HelenOS-historic

Rev

Rev 329 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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