[BACK]Return to boot.ld CVS log [TXT][DIR] Up to [local] / prex-old / boot / avr32 / ngw100

Annotation of prex-old/boot/avr32/ngw100/boot.ld, Revision 1.1

1.1     ! nbrk        1: SECTIONS {
        !             2:        . = 0x10200000;
        !             3:        .text . : {
        !             4:                *(.text)
        !             5:        }
        !             6:        .rodata . : {
        !             7:                *(.rodata)
        !             8:        }
        !             9:        .data . : {
        !            10:                *(.data)
        !            11:        }
        !            12:        .bss . : {
        !            13:                *(.bss)
        !            14:                *(COMMON)
        !            15:        }
        !            16:        .tail : {
        !            17:                *(.tail)
        !            18:        }
        !            19: }

CVSweb