Ignore:
File:
1 edited

Legend:

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

    r6677acb rc89ae25  
    1414        kernel_load_address = VMA;
    1515
    16         .text (VMA + SIZEOF_HEADERS): AT (LMA + SIZEOF_HEADERS) {
     16        .image (VMA + SIZEOF_HEADERS): AT (LMA + SIZEOF_HEADERS) {
    1717                ktext_start = .;
    1818                KEEP(*(K_TEXT_START));
    1919                *(.text .text.*);
    2020                ktext_end = .;
    21         }
    2221
    23         /* stack unwinding data */
    24         .eh_frame_hdr : {
    25                 eh_frame_hdr_start = .;
    26                 *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*);
    27                 eh_frame_hdr_end = .;
    28         }
    29 
    30         .eh_frame : {
    31                 eh_frame_start = .;
    32                 KEEP(*(.eh_frame .eh_frame.*));
    33                 eh_frame_end = .;
    34         }
    35 
    36         .data : {
    3722                kdata_start = .;
    3823                KEEP(*(K_DATA_START));
    3924                *(.rodata .rodata.*);
     25                *(.eh_frame .eh_frame.*);       /* stack unwinding data */
     26                *(.eh_frame_hdr .eh_frame_hdr.*);
    4027                *(.data .data.*);                   /* initialized data */
    4128                *(.sdata .sdata.*);
Note: See TracChangeset for help on using the changeset viewer.