Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/_link.ld.in

    r19b5929 ref042e0  
    77 */
    88
    9 #define LOAD_ADDRESS_V  0xe000000004404000
    10 #define LOAD_ADDRESS_P  0x0000000004404000
    11 
    129ENTRY(kernel_image_start)
    1310
    1411SECTIONS {
    15         .image LOAD_ADDRESS_V: AT (LOAD_ADDRESS_P) {
     12        .image 0xe000000004404000: AT (0x0000000004404000) {
    1613                ktext_start = .;
    1714                *(K_TEXT_START);
     
    2421                *(.opd)
    2522                *(.data .data.*)
    26                 hardcoded_load_address = .;
    27                 QUAD(LOAD_ADDRESS_V);
    28                 hardcoded_ktext_size = .;
    29                 QUAD(ktext_end - ktext_start);
    30                 hardcoded_kdata_size = .;
    31                 QUAD(kdata_end - kdata_start);
    3223                *(.got .got.*)
    3324                *(.sdata)
     
    4738        }
    4839
     40        _hardcoded_ktext_size = ktext_end - ktext_start;
     41        _hardcoded_kdata_size = kdata_end - kdata_start;
     42        _hardcoded_load_address = 0xe000000004404000;
     43
    4944}
Note: See TracChangeset for help on using the changeset viewer.