Changeset dc5c303 in mainline for kernel/arch/sparc64/_link.ld.in
- Timestamp:
- 2023-12-28T13:59:23Z (14 months ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/_link.ld.in
r42c2e65 rdc5c303 16 16 .image (VMA + SIZEOF_HEADERS): AT (LMA + SIZEOF_HEADERS) { 17 17 ktext_start = .; 18 *(K_TEXT_START)18 KEEP(*(K_TEXT_START)); 19 19 *(.text .text.*); 20 20 ktext_end = .; 21 21 22 22 kdata_start = .; 23 *(K_DATA_START)23 KEEP(*(K_DATA_START)); 24 24 *(.rodata .rodata.*); 25 *(.data); /* initialized data */ 26 *(.sdata); 27 *(.sdata2); 28 *(.sbss); 25 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 26 *(.eh_frame_hdr .eh_frame_hdr.*); 27 *(.data .data.*); /* initialized data */ 28 *(.sdata .sdata.*); 29 *(.sdata2 .sdata2.*); 30 *(.sbss .sbss.*); 29 31 . = ALIGN(8); 30 *(.bss ); /* uninitialized static variables */32 *(.bss .bss.*); /* uninitialized static variables */ 31 33 *(COMMON); /* global variables */ 32 33 . = ALIGN(8);34 symbol_table = .;35 *(symtab.*); /* Symbol table, must be LAST symbol!*/36 37 34 kdata_end = .; 38 35 } 36 37 .comment 0 : { *(.comment); } 38 .debug_abbrev 0 : { *(.debug_abbrev); } 39 .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); } 40 .debug_addr 0 : { *(.debug_addr); } 41 .debug_aranges 0 : { *(.debug_aranges); } 42 .debug_cu_index 0 : { *(.debug_cu_index); } 43 .debug_frame 0 : { *(.debug_frame); } 44 .debug_frame_hdr 0 : { *(.debug_frame_hdr); } 45 .debug_info 0 : { *(.debug_info); } 46 .debug_info.dwo 0 : { *(.debug_info.dwo); } 47 .debug_line 0 : { *(.debug_line); } 48 .debug_line.dwo 0 : { *(.debug_line.dwo); } 49 .debug_line_str 0 : { *(.debug_line_str); } 50 .debug_loc 0 : { *(.debug_loc); } 51 .debug_loclists 0 : { *(.debug_loclists); } 52 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); } 53 .debug_macinfo 0 : { *(.debug_macinfo); } 54 .debug_macro 0 : { *(.debug_macro); } 55 .debug_macro.dwo 0 : { *(.debug_macro.dwo); } 56 .debug_names 0 : { *(.debug_names); } 57 .debug_pubnames 0 : { *(.debug_pubnames); } 58 .debug_pubtypes 0 : { *(.debug_pubtypes); } 59 .debug_ranges 0 : { *(.debug_ranges); } 60 .debug_rnglists 0 : { *(.debug_rnglists); } 61 .debug_str 0 : { *(.debug_str); } 62 .debug_str.dwo 0 : { *(.debug_str.dwo); } 63 .debug_str_offsets 0 : { *(.debug_str_offsets); } 64 .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); } 65 .debug_tu_index 0 : { *(.debug_tu_index); } 66 .debug_types 0 : { *(.debug_types); } 39 67 40 68 /DISCARD/ : {
Note:
See TracChangeset
for help on using the changeset viewer.