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


Ignore:
Timestamp:
2024-02-23T17:57:23Z (3 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/ia64/_link.ld.in

    r86f862c rf2cb80a  
    1515        kernel_load_address = LOAD_ADDRESS_V;
    1616
    17         .image (LOAD_ADDRESS_V + SIZEOF_HEADERS): AT (LOAD_ADDRESS_P + SIZEOF_HEADERS) {
     17        .text (LOAD_ADDRESS_V + SIZEOF_HEADERS): AT (LOAD_ADDRESS_P + SIZEOF_HEADERS) {
    1818                . = ALIGN(16);
    1919                ktext_start = .;
     
    2121                *(.text .text.*)
    2222                ktext_end = .;
     23        }
    2324
     25        /* stack unwinding data */
     26        .eh_frame_hdr : {
     27                eh_frame_hdr_start = .;
     28                *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*);
     29                eh_frame_hdr_end = .;
     30        }
     31
     32        .eh_frame : {
     33                eh_frame_start = .;
     34                KEEP(*(.eh_frame .eh_frame.*));
     35                eh_frame_end = .;
     36        }
     37       
     38        .data : {
    2439                kdata_start = .;
    2540                KEEP(*(K_DATA_START));
    2641                *(.rodata .rodata.*);
    27                 *(.eh_frame .eh_frame.*);       /* stack unwinding data */
    28                 *(.eh_frame_hdr .eh_frame_hdr.*);
    2942                *(.opd)
    3043                *(.data .data.*)
Note: See TracChangeset for help on using the changeset viewer.