Ignore:
File:
1 edited

Legend:

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

    r318af1a rc89ae25  
    55        .boot 0x4400000: AT (0x4400000) {
    66                loader_start = .;
    7                 *(BOOTSTRAP);
    8                 *(.text);
    9                 *(.text.*);
    10                 *(.sdata);
    11                 *(.sdata2);
    12                 *(.sbss);
    13                 *(.rodata);
    14                 *(.rodata.*);
     7                KEEP(*(BOOTSTRAP));
     8                *(.text .text.*);
     9                *(.sdata .sdata.*);
     10                *(.sdata2 .sdata2.*);
     11                *(.sbss .sbss.*);
     12                *(.rodata .rodata.*);
    1513                *(.data .data.*);       /* initialized data */
    1614                __gp = . ;
    1715                *(.got .got.*);
    18                 *(.bss);                /* uninitialized static variables */
     16                *(.bss .bss.*);                /* uninitialized static variables */
    1917                *(COMMON);
    2018                loader_end = .;
    2119                payload_start = .;
    22                 *(.payload);
     20                KEEP(*(.payload));
    2321                payload_end = .;
    2422        }
Note: See TracChangeset for help on using the changeset viewer.