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

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

1.1       init        1: /*
1.2     ! init        2:  * $Id: ldscript,v 1.1 2007/11/09 22:10:09 init Exp $
1.1       init        3:  */
                      4: /*
                      5:  * Where to put each section.
                      6:  */
                      7: SECTIONS
                      8: {
                      9:        .text : {
                     10:                _stext = .;
1.2     ! init       11:                *(.vectors)
1.1       init       12:                *(.text)
                     13:                *(.rodata)
                     14:                *(.rodata*)
                     15:                . = ALIGN(4);
                     16:                _etext = .;
                     17:        } /* .text */
                     18:
                     19:        /* initialized data (.data) */
                     20:        .data : AT (ADDR(.text) + SIZEOF(.text)) {
                     21:                _sdata = .;
                     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