Changeset c832cc0a in mainline for arch/mips/_link.ld


Ignore:
Timestamp:
2005-08-31T23:57:30Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2a0d782
Parents:
3817ed1
Message:

hardcoded_symbol fixed into linker script on amd64/ia32/mips architecture

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips/_link.ld

    r3817ed1 rc832cc0a  
    2828                *(.sdata);
    2929                *(.sbss);
     30                hardcoded_ktext_size = .;
     31                LONG(ktext_end - ktext_start); 
     32                hardcoded_kdata_size = .;
     33                LONG(kdata_end - kdata_start);
     34                hardcoded_load_address = .;
     35                LONG(0x80000000);
    3036                *(.bss);                /* uninitialized static variables */   
    3137                *(.scommon);
     
    3440
    3541        } = 0x00000000
    36 
    37         . = ABSOLUTE(hardcoded_ktext_size);
    38         .patch_1 : {
    39                 LONG(ktext_end - ktext_start);
    40         }
    41 
    42         . = ABSOLUTE(hardcoded_kdata_size);
    43         .patch_2 : {
    44                 LONG(kdata_end - kdata_start);
    45         }
    46 
    47         . = ABSOLUTE(hardcoded_load_address);
    48         .patch_3 : {
    49                 LONG(0x80000000);
    50         }
    51 
    5242}
Note: See TracChangeset for help on using the changeset viewer.