Subversion Repositories HelenOS-historic

Compare Revisions

Problem with comparison.

Ignore whitespace Rev HEAD → Rev 964

/boot/trunk/arch/ppc32/loader/_link.ld
0,0 → 1,23
/*
* PPC linker script
*
*/
 
OUTPUT_FORMAT(elf32-powerpc)
ENTRY(start)
 
SECTIONS {
.image 0x10000000: AT (0) {
*(BOOTSTRAP)
*(.text);
*(.rodata);
*(.rodata.*);
*(.data); /* initialized data */
*(.sdata);
*(.sdata2);
*(.sbss);
*(.bss); /* uninitialized static variables */
*(COMMON); /* global variables */
}
}