Subversion Repositories HelenOS-historic

Rev

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

Rev 1058 Rev 1068
Line 18... Line 18...
18
		*(.sdata);
18
		*(.sdata);
19
		*(.sdata2);
19
		*(.sdata2);
20
		*(.sbss);
20
		*(.sbss);
21
		*(.bss);		/* uninitialized static variables */	
21
		*(.bss);		/* uninitialized static variables */	
22
		*(COMMON); 		/* global variables */
22
		*(COMMON); 		/* global variables */
23
	}
23
		
24
	
-
 
25
	.image 0x10000000+SIZEOF(.boot): AT (SIZEOF(.boot)) SUBALIGN(4096) { 
24
		. = ALIGN(4096);
26
		*(.image);
25
		*(.image);
27
	}
26
	}
28
}
27
}