Subversion Repositories HelenOS

Rev

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

OUTPUT_FORMAT("binary") 
ENTRY(start) 
 
SECTIONS {
    .boot 0xbfc00000: AT (0) {
        *(BOOTSTRAP);
        *(.text);
        
        *(.rodata);
        *(.rodata.*);
        *(.data);       /* initialized data */
        *(.sdata);
        *(.sdata2);
        *(.sbss);
        *(.scommon);
        *(.bss);        /* uninitialized static variables */    
        *(COMMON);      /* global variables */
        *(.reginfo);
[[COMPONENTS]]
    }
}