Changeset dc5c303 in mainline for boot/arch/arm32/_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/arm32/_link.ld.in

    r42c2e65 rdc5c303  
    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.