Changeset dc5c303 in mainline for kernel/arch/abs32le/_link.ld.in
- Timestamp:
- 2023-12-28T13:59:23Z (15 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/abs32le/_link.ld.in
r42c2e65 rdc5c303 3 3 kernel_load_address = .; 4 4 ktext_start = .; 5 *(.text );5 *(.text .text.*); 6 6 ktext_end = .; 7 7 } 8 8 .data : { 9 9 kdata_start = .; 10 *(.data ); /* initialized data */11 *(.bss ); /* uninitialized static variables */10 *(.data .data.*); /* initialized data */ 11 *(.bss .bss.*); /* uninitialized static variables */ 12 12 *(COMMON); /* global variables */ 13 13 14 *(.rodata*); 15 *(.sdata); 16 *(.reginfo); 17 . = ALIGN(8); 18 symbol_table = .; 19 *(symtab.*); 14 *(.rodata .rodata.*); 15 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 16 *(.eh_frame_hdr .eh_frame_hdr.*); 17 *(.sdata .sdata.*); 20 18 } 21 19 .sbss : { 22 *(.sbss );23 *(.scommon );20 *(.sbss .sbss.*); 21 *(.scommon .scommon.*); 24 22 } 25 23 26 24 kdata_end = .; 25 26 .comment 0 : { *(.comment); } 27 .debug_abbrev 0 : { *(.debug_abbrev); } 28 .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); } 29 .debug_addr 0 : { *(.debug_addr); } 30 .debug_aranges 0 : { *(.debug_aranges); } 31 .debug_cu_index 0 : { *(.debug_cu_index); } 32 .debug_frame 0 : { *(.debug_frame); } 33 .debug_frame_hdr 0 : { *(.debug_frame_hdr); } 34 .debug_info 0 : { *(.debug_info); } 35 .debug_info.dwo 0 : { *(.debug_info.dwo); } 36 .debug_line 0 : { *(.debug_line); } 37 .debug_line.dwo 0 : { *(.debug_line.dwo); } 38 .debug_line_str 0 : { *(.debug_line_str); } 39 .debug_loc 0 : { *(.debug_loc); } 40 .debug_loclists 0 : { *(.debug_loclists); } 41 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); } 42 .debug_macinfo 0 : { *(.debug_macinfo); } 43 .debug_macro 0 : { *(.debug_macro); } 44 .debug_macro.dwo 0 : { *(.debug_macro.dwo); } 45 .debug_names 0 : { *(.debug_names); } 46 .debug_pubnames 0 : { *(.debug_pubnames); } 47 .debug_pubtypes 0 : { *(.debug_pubtypes); } 48 .debug_ranges 0 : { *(.debug_ranges); } 49 .debug_rnglists 0 : { *(.debug_rnglists); } 50 .debug_str 0 : { *(.debug_str); } 51 .debug_str.dwo 0 : { *(.debug_str.dwo); } 52 .debug_str_offsets 0 : { *(.debug_str_offsets); } 53 .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); } 54 .debug_tu_index 0 : { *(.debug_tu_index); } 55 .debug_types 0 : { *(.debug_types); } 27 56 28 57 /DISCARD/ : {
Note:
See TracChangeset
for help on using the changeset viewer.