Ignore:
File:
1 edited

Legend:

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

    rc89ae25 r63a045c  
    88        .text : {
    99                loader_start = .;
    10                 KEEP(*(BOOTSTRAP));
    11                 *(.text .text.*);
     10                *(BOOTSTRAP);
     11                *(.text);
    1212        }
    1313
     
    2727
    2828        .data : {
    29                 *(.data .data.*);       /* initialized data */
    30                 *(.rodata .rodata.*);
    31                 *(.sdata .sdata.*);
    32                 *(.sbss .sbss.*);
    33                 *(.scommon .scommon.*);
    34                 *(.bss .bss.*);        /* uninitialized static variables */
     29                *(.data);       /* initialized data */
     30                *(.rodata);
     31                *(.rodata.*);
     32                *(.sdata);
     33                *(.reginfo);
     34                *(.sbss);
     35                *(.scommon);
     36                *(.bss);        /* uninitialized static variables */
    3537                *(COMMON);      /* global variables */
    3638                loader_end = .;
    3739                payload_start = .;
    38                 KEEP(*(.payload));
     40                *(.payload);
    3941                payload_end = .;
    4042        }
Note: See TracChangeset for help on using the changeset viewer.