Ignore:
File:
1 edited

Legend:

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

    r63a045c rc89ae25  
    77        .text : {
    88                loader_start = .;
    9                 *(BOOTSTRAP);
    10                 *(.text);
     9                KEEP(*(BOOTSTRAP));
     10                *(.text .text.*);
    1111        }
    1212        . = BOOT_BASE + 0x8000;
     
    1414                *(BOOTPT);      /* bootstrap page table */
    1515                *(BOOTSTACK);   /* bootstrap stack */
    16                 *(.data);       /* initialized data */
    17                 *(.rodata);
    18                 *(.rodata.*);
    19                 *(.sdata);
    20                 *(.reginfo);
    21                 *(.sbss);
    22                 *(.scommon);
    23                 *(.bss);        /* uninitialized static variables */
     16                *(.data .data.*);       /* initialized data */
     17                *(.rodata .rodata.*);
     18                *(.sdata .sdata.*);
     19                *(.sbss .sbss.*);
     20                *(.scommon .scommon.*);
     21                *(.bss .bss.*);        /* uninitialized static variables */
    2422                *(COMMON);      /* global variables */
    2523                loader_end = .;
    2624                payload_start = .;
    27                 *(.payload);
     25                KEEP(*(.payload));
    2826                payload_end = .;
    2927        }
Note: See TracChangeset for help on using the changeset viewer.