Ignore:
Timestamp:
2011-04-29T20:59:37Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c53d906
Parents:
bae7bdc
Message:

Re-converge linker scripts used by loader to those in C library.

File:
1 edited

Legend:

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

    rbae7bdc rfcfd002  
    1818        } : interp
    1919       
    20         . = 0x70001000;
     20        . = 0x70001000 + SIZEOF_HEADERS;
    2121       
    22         .init ALIGN(0x1000): SUBALIGN(0x1000) {
     22        .init : {
    2323                *(.init);
    2424        } :text
     
    2929        } :text
    3030       
    31         .data ALIGN(0x1000) : SUBALIGN(0x1000) {
     31        . = . + 0x1000;
     32       
     33        .data : {
    3234                *(.opd);
    3335                *(.data .data.*);
     
    3941                *(.tdata);
    4042                _tdata_end = .;
    41         } :data
    42        
    43         .tbss : {
    4443                _tbss_start = .;
    4544                *(.tbss);
     
    4746        } :data
    4847       
    49         _tls_alignment = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss));
     48        _tls_alignment = ALIGNOF(.tdata);
    5049       
    5150        .bss : {
Note: See TracChangeset for help on using the changeset viewer.