Subversion Repositories HelenOS-historic

Rev

Rev 956 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

/*
 *  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 */
    }
}