Changeset da13982 in mainline for kernel/arch/riscv64/_link.ld.in
- Timestamp:
- 2023-10-26T15:20:07Z (15 months ago)
- Branches:
- master, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2fbb42f
- Parents:
- d28bdbe
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-26 14:42:03)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-26 15:20:07)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/riscv64/_link.ld.in
rd28bdbe rda13982 24 24 kdata_start = .; 25 25 *(.data); /* initialized data */ 26 *(.rodata*); 26 *(.rodata .rodata.*); 27 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 28 *(.eh_frame_hdr .eh_frame_hdr.*); 27 29 *(.sdata); 28 30 *(.reginfo); … … 31 33 *(.bss); /* uninitialized static variables */ 32 34 *(COMMON); /* global variables */ 33 . = ALIGN(8);34 symbol_table = .;35 *(symtab.*);36 35 kdata_end = .; 37 36 } 37 38 .comment 0 : { *(.comment); } 39 .debug_abbrev 0 : { *(.debug_abbrev); } 40 .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); } 41 .debug_addr 0 : { *(.debug_addr); } 42 .debug_aranges 0 : { *(.debug_aranges); } 43 .debug_cu_index 0 : { *(.debug_cu_index); } 44 .debug_frame 0 : { *(.debug_frame); } 45 .debug_frame_hdr 0 : { *(.debug_frame_hdr); } 46 .debug_info 0 : { *(.debug_info); } 47 .debug_info.dwo 0 : { *(.debug_info.dwo); } 48 .debug_line 0 : { *(.debug_line); } 49 .debug_line.dwo 0 : { *(.debug_line.dwo); } 50 .debug_line_str 0 : { *(.debug_line_str); } 51 .debug_loc 0 : { *(.debug_loc); } 52 .debug_loclists 0 : { *(.debug_loclists); } 53 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); } 54 .debug_macinfo 0 : { *(.debug_macinfo); } 55 .debug_macro 0 : { *(.debug_macro); } 56 .debug_macro.dwo 0 : { *(.debug_macro.dwo); } 57 .debug_names 0 : { *(.debug_names); } 58 .debug_pubnames 0 : { *(.debug_pubnames); } 59 .debug_pubtypes 0 : { *(.debug_pubtypes); } 60 .debug_ranges 0 : { *(.debug_ranges); } 61 .debug_rnglists 0 : { *(.debug_rnglists); } 62 .debug_str 0 : { *(.debug_str); } 63 .debug_str.dwo 0 : { *(.debug_str.dwo); } 64 .debug_str_offsets 0 : { *(.debug_str_offsets); } 65 .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); } 66 .debug_tu_index 0 : { *(.debug_tu_index); } 67 .debug_types 0 : { *(.debug_types); } 38 68 39 69 /DISCARD/ : {
Note:
See TracChangeset
for help on using the changeset viewer.