Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1057 → Rev 1058

/boot/trunk/arch/ppc32/loader/_link.ld
7,9 → 7,9
ENTRY(start)
 
SECTIONS {
.image 0x10000000: AT (0) {
*(BOOTSTRAP)
*(REALMODE)
.boot 0x10000000: AT (0) {
*(BOOTSTRAP);
*(REALMODE);
*(.text);
*(.rodata);
21,4 → 21,8
*(.bss); /* uninitialized static variables */
*(COMMON); /* global variables */
}
.image 0x10000000+SIZEOF(.boot): AT (SIZEOF(.boot)) SUBALIGN(4096) {
*(.image);
}
}