Subversion Repositories HelenOS-historic

Rev

Blame | Last modification | View Log | Download | RSS feed

/*
 *  PPC linker script
 *
 */

OUTPUT_FORMAT(elf32-powerpc)
ENTRY(start)

SECTIONS {
    .image 0x80000000: AT (0x80000000) { 
        *(BOOTSTRAP)
        *(.text);
        
        *(.rodata);
        *(.rodata.*);
        *(.data);       /* initialized data */
        *(.sdata);
        *(.sdata2);
        *(.sbss);
        *(.bss);        /* uninitialized static variables */    
    }
}