Ignore:
File:
1 edited

Legend:

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

    r63a045c rc89ae25  
    99        .text : {
    1010                loader_start = .;
    11                 *(BOOTSTRAP);
    12                 *(.text);
     11                KEEP(*(BOOTSTRAP));
     12                *(.text .text.*);
    1313        }
    1414        .data : {
    15                 *(.data);       /* initialized data */
    16                 *(.rodata);
    17                 *(.rodata.*);
    18                 *(.sdata);
     15                *(.data .data.*);       /* initialized data */
     16                *(.rodata .rodata.*);
     17                *(.sdata .sdata.*);
    1918                *(.reginfo);
    20                 *(.sbss);
    21                 *(.scommon);
    22                 *(.bss);        /* uninitialized static variables */
     19                *(.sbss .sbss.*);
     20                *(.scommon .scommon.*);
     21                *(.bss .bss.*);        /* uninitialized static variables */
    2322                *(COMMON);      /* global variables */
    2423                loader_end = .;
    2524                payload_start = .;
    26                 *(.payload);
     25                KEEP(*(.payload));
    2726                payload_end = .;
    2827        }
Note: See TracChangeset for help on using the changeset viewer.