Changeset dc5c303 in mainline for kernel/arch/arm64/_link.ld.in


Ignore:
Timestamp:
2023-12-28T13:59:23Z (2 years 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
  • kernel/arch/arm64/_link.ld.in

    r42c2e65 rdc5c303  
    2222                . = ALIGN(16);
    2323                ktext_start = .;
    24                 *(K_TEXT_START)
     24                KEEP(*(K_TEXT_START))
    2525                *(.text .text.*);
    2626                ktext_end = .;
    2727
    2828                kdata_start = .;
    29                 *(K_DATA_START)
    30                 *(.data);                       /* initialized data */
    31                 *(.bss);                        /* uninitialized static variables */
     29                KEEP(*(K_DATA_START))
     30                *(.data .data.*);                       /* initialized data */
     31                *(.bss .bss.*);                        /* uninitialized static variables */
    3232                *(COMMON);                      /* global variables */
    3333
    34                 *(.rodata*);
    35                 . = ALIGN(8);
    36                 symbol_table = .;
    37                 *(symtab.*);
     34                *(.rodata .rodata.*);
     35                *(.eh_frame .eh_frame.*);       /* stack unwinding data */
     36                *(.eh_frame_hdr .eh_frame_hdr.*);
    3837
    3938                kdata_end = .;
    4039        }
    4140
    42 #ifdef CONFIG_LINE_DEBUG
    4341        .comment 0 : { *(.comment); }
    4442        .debug_abbrev 0 : { *(.debug_abbrev); }
     43        .debug_abbrev.dwo 0 : { *(      .debug_abbrev.dwo); }
     44        .debug_addr 0 : { *(.debug_addr); }
    4545        .debug_aranges 0 : { *(.debug_aranges); }
     46        .debug_cu_index 0 : { *(.debug_cu_index); }
    4647        .debug_frame 0 : { *(.debug_frame); }
     48        .debug_frame_hdr 0 : { *(.debug_frame_hdr); }
    4749        .debug_info 0 : { *(.debug_info); }
     50        .debug_info.dwo 0 : { *(.debug_info.dwo); }
    4851        .debug_line 0 : { *(.debug_line); }
     52        .debug_line.dwo 0 : { *(.debug_line.dwo); }
     53        .debug_line_str 0 : { *(.debug_line_str); }
    4954        .debug_loc 0 : { *(.debug_loc); }
     55        .debug_loclists 0 : { *(.debug_loclists); }
     56        .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); }
    5057        .debug_macinfo 0 : { *(.debug_macinfo); }
     58        .debug_macro 0 : { *(.debug_macro); }
     59        .debug_macro.dwo 0 : { *(.debug_macro.dwo); }
     60        .debug_names 0 : { *(.debug_names); }
    5161        .debug_pubnames 0 : { *(.debug_pubnames); }
    5262        .debug_pubtypes 0 : { *(.debug_pubtypes); }
    5363        .debug_ranges 0 : { *(.debug_ranges); }
     64        .debug_rnglists 0 : { *(.debug_rnglists); }
    5465        .debug_str 0 : { *(.debug_str); }
    55 #endif
     66        .debug_str.dwo 0 : { *(.debug_str.dwo); }
     67        .debug_str_offsets 0 : { *(.debug_str_offsets); }
     68        .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); }
     69        .debug_tu_index 0 : { *(.debug_tu_index); }
     70        .debug_types 0 : { *(.debug_types); }
    5671
    5772        /DISCARD/ : {
Note: See TracChangeset for help on using the changeset viewer.