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

Annotation of prex-old/boot/arm/cats/boot.ld, Revision 1.2

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

CVSweb