[BACK]Return to ldscript CVS log [TXT][DIR] Up to [local] / funnyos / arch / sam7s64

Annotation of funnyos/arch/sam7s64/ldscript, Revision 1.1

1.1     ! init        1: /*
        !             2:  * $Id$
        !             3:  */
        !             4: /*
        !             5:  * Where to put each section.
        !             6:  */
        !             7: SECTIONS
        !             8: {
        !             9:        .text : {
        !            10:                _stext = .;
        !            11:                *(.text)
        !            12:                *(.rodata)
        !            13:                *(.rodata*)
        !            14:                . = ALIGN(4);
        !            15:                _etext = .;
        !            16:        } /* .text */
        !            17:
        !            18:        /* initialized data (.data) */
        !            19:        .data : AT (ADDR(.text) + SIZEOF(.text)) {
        !            20:                _sdata = .;
        !            21:                *(.vectors)
        !            22:                *(.data)
        !            23:                _edata = .;
        !            24:        } /* .data */
        !            25:
        !            26:        /* uninitialized data (.bss) */
        !            27:        .bss (NOLOAD) : {
        !            28:                . = ALIGN(4);
        !            29:                _sbss = .;
        !            30:                *(.bss)
        !            31:                _ebss = .;
        !            32:        } /* .bss */
        !            33:
        !            34: } /* SECTIONS */
        !            35:
        !            36: end = .;
        !            37:
        !            38:

CVSweb