Changeset f2cb80a in mainline for kernel/arch/ppc32/_link.ld.in


Ignore:
Timestamp:
2024-02-23T17:57:23Z (11 months ago)
Author:
GitHub <noreply@…>
Children:
192019f
Parents:
86f862c (diff), 90ba06c (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@…> (2024-02-23 17:57:23)
git-committer:
GitHub <noreply@…> (2024-02-23 17:57:23)
Message:

Merge branch 'HelenOS:master' into topic/packet-capture

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc32/_link.ld.in

    r86f862c rf2cb80a  
    2525        }
    2626
    27         .mapped PA2KA(BOOT_OFFSET): AT (BOOT_OFFSET) {
     27        .text PA2KA(BOOT_OFFSET): AT (BOOT_OFFSET) {
    2828                ktext_start = .;
    2929                KEEP(*(K_TEXT_START));
    3030                *(.text .text.*);
    3131                ktext_end = .;
     32        }
    3233
     34        /* stack unwinding data */
     35        .eh_frame_hdr : {
     36                eh_frame_hdr_start = .;
     37                *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*);
     38                eh_frame_hdr_end = .;
     39        }
     40
     41        .eh_frame : {
     42                eh_frame_start = .;
     43                KEEP(*(.eh_frame .eh_frame.*));
     44                eh_frame_end = .;
     45        }
     46
     47        .data : {
    3348                kdata_start = .;
    3449                KEEP(*(K_DATA_START));
    3550                *(.rodata .rodata.*);
    36                 *(.eh_frame .eh_frame.*);       /* stack unwinding data */
    37                 *(.eh_frame_hdr .eh_frame_hdr.*);
    3851                *(.data .data.*);       /* initialized data */
    3952                *(.sdata .sdata.*);
Note: See TracChangeset for help on using the changeset viewer.