Subversion Repositories HelenOS

Rev

Rev 3107 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

OUTPUT_FORMAT("elf32-powerpc") 
OUTPUT_ARCH(powerpc:common) 
ENTRY(start) 
 
SECTIONS {
    .boot 0x01000000: AT (0) { 
        *(BOOTSTRAP);
        *(REALMODE);
        *(.text);
        
        *(.rodata);
        *(.rodata.*);
        *(.data);       /* initialized data */
        *(.sdata);
        *(.sdata2);
        *(.sbss);
        *(.bss);        /* uninitialized static variables */    
        *(COMMON);      /* global variables */
[[COMPONENTS]]
    }
}