Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/loader/arch/arm32/_link.ld.in

    r5e8b881 rfcd7053  
    33 * is the base address.
    44 */
    5 
    65STARTUP(LIBC_PREFIX/arch/UARCH/src/entry.o)
    76ENTRY(__entry)
     
    1716                *(.interp);
    1817        } : interp
    19        
     18
    2019        . = 0x70001000;
    21        
     20
    2221        .init ALIGN(0x1000): SUBALIGN(0x1000) {
    2322                *(.init);
    24         } :text
    25        
     23        } : text
    2624        .text : {
    2725                *(.text);
    28                 *(.rodata*);
     26        *(.rodata*);
    2927        } :text
    3028       
     
    3432                *(.sdata);
    3533        } :data
    36        
    3734        .tdata : {
    3835                _tdata_start = .;
     
    4037                _tdata_end = .;
    4138        } :data
    42        
    4339        .tbss : {
    4440                _tbss_start = .;
     
    4642                _tbss_end = .;
    4743        } :data
    48        
    4944        _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));
    50        
    5145        .bss : {
    5246                *(.sbss);
    5347                *(.scommon);
    54                 *(COMMON);
    55                 *(.bss);
     48        *(COMMON);
     49        *(.bss);
    5650        } :data
     51       
     52        . = ALIGN(0x1000);
     53        _heap = .;
    5754       
    5855        /DISCARD/ : {
    5956                *(*);
    6057        }
     58
    6159}
Note: See TracChangeset for help on using the changeset viewer.