Changeset dc5c303 in mainline for boot/arch/riscv64/_link.ld.in


Ignore:
Timestamp:
2023-12-28T13:59:23Z (14 months ago)
Author:
GitHub <noreply@…>
Children:
6b66de6b
Parents:
42c2e65 (diff), f87ff8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
boba-buba <120932204+boba-buba@…> (2023-12-28 13:59:23)
git-committer:
GitHub <noreply@…> (2023-12-28 13:59:23)
Message:

Merge branch 'master' into topic/packet-capture

File:
1 edited

Legend:

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

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