Ignore:
File:
1 edited

Legend:

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

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