Changes in kernel/arch/arm64/_link.ld.in [c89ae25:84176f3] in mainline
- File:
-
- 1 edited
-
kernel/arch/arm64/_link.ld.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm64/_link.ld.in
rc89ae25 r84176f3 22 22 . = ALIGN(16); 23 23 ktext_start = .; 24 KEEP(*(K_TEXT_START))24 *(K_TEXT_START) 25 25 *(.text .text.*); 26 26 ktext_end = .; 27 27 28 28 kdata_start = .; 29 KEEP(*(K_DATA_START))30 *(.data .data.*); /* initialized data */31 *(.bss .bss.*); /* uninitialized static variables */29 *(K_DATA_START) 30 *(.data); /* initialized data */ 31 *(.bss); /* uninitialized static variables */ 32 32 *(COMMON); /* global variables */ 33 33 34 *(.rodata .rodata.*); 35 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 36 *(.eh_frame_hdr .eh_frame_hdr.*); 34 *(.rodata*); 35 . = ALIGN(8); 36 symbol_table = .; 37 *(symtab.*); 37 38 38 39 kdata_end = .; 39 40 } 40 41 42 #ifdef CONFIG_LINE_DEBUG 41 43 .comment 0 : { *(.comment); } 42 44 .debug_abbrev 0 : { *(.debug_abbrev); } 43 .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); }44 .debug_addr 0 : { *(.debug_addr); }45 45 .debug_aranges 0 : { *(.debug_aranges); } 46 .debug_cu_index 0 : { *(.debug_cu_index); }47 46 .debug_frame 0 : { *(.debug_frame); } 48 .debug_frame_hdr 0 : { *(.debug_frame_hdr); }49 47 .debug_info 0 : { *(.debug_info); } 50 .debug_info.dwo 0 : { *(.debug_info.dwo); }51 48 .debug_line 0 : { *(.debug_line); } 52 .debug_line.dwo 0 : { *(.debug_line.dwo); }53 .debug_line_str 0 : { *(.debug_line_str); }54 49 .debug_loc 0 : { *(.debug_loc); } 55 .debug_loclists 0 : { *(.debug_loclists); }56 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); }57 50 .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); }61 51 .debug_pubnames 0 : { *(.debug_pubnames); } 62 52 .debug_pubtypes 0 : { *(.debug_pubtypes); } 63 53 .debug_ranges 0 : { *(.debug_ranges); } 64 .debug_rnglists 0 : { *(.debug_rnglists); }65 54 .debug_str 0 : { *(.debug_str); } 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); } 55 #endif 71 56 72 57 /DISCARD/ : {
Note:
See TracChangeset
for help on using the changeset viewer.
