Ignore:
File:
1 edited

Legend:

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

    rc89ae25 r8684e34  
    55        .text : {
    66                loader_start = .;
    7                 KEEP(*(BOOTSTRAP));
    8                 *(.text .text.*);
     7                *(BOOTSTRAP);
     8                *(.text);
     9                *(.text.*);
    910        }
    1011        .data : {
    11                 *(.data .data.*);       /* initialized data */
    12                 *(.rodata .rodata.*);
    13                 *(.sdata .sdata.*);
    14                 *(.sbss .sbss.*);
    15                 *(.scommon .scommon.*);
    16                 *(.bss .bss.*);        /* uninitialized static variables */
     12                *(.data);       /* initialized data */
     13                *(.rodata);
     14                *(.rodata.*);
     15                *(.sdata);
     16                *(.reginfo);
     17                *(.sbss);
     18                *(.scommon);
     19                *(.bss);        /* uninitialized static variables */
    1720                *(COMMON);      /* global variables */
    1821                loader_end = .;
    1922                payload_start = .;
    20                 KEEP(*(.payload));
     23                *(.payload);
    2124                payload_end = .;
    2225        }
Note: See TracChangeset for help on using the changeset viewer.