Changes in kernel/arch/mips32/_link.ld.in [c89ae25:cfdeedc] in mainline
- File:
-
- 1 edited
-
kernel/arch/mips32/_link.ld.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/_link.ld.in
rc89ae25 rcfdeedc 28 28 .text : { 29 29 ktext_start = .; 30 /* FIXME: for some reason, mixing .text with .text.* produces a crash on malta-be */31 30 *(.text); 32 *(.text.*);33 31 ktext_end = .; 34 32 } 35 33 .data : { 36 34 kdata_start = .; 37 *(.data .data.*); /* initialized data */ 38 *(.rodata .rodata.*); 39 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 40 *(.eh_frame_hdr .eh_frame_hdr.*); 41 *(.sdata .sdata.*); 35 *(.data); /* initialized data */ 36 *(.rodata*); 37 *(.sdata); 42 38 *(.reginfo); 43 *(.sbss .sbss.*);44 *(.scommon .scommon.*);45 *(.bss .bss.*); /* uninitialized static variables */39 *(.sbss); 40 *(.scommon); 41 *(.bss); /* uninitialized static variables */ 46 42 *(COMMON); /* global variables */ 43 . = ALIGN(8); 44 symbol_table = .; 45 *(symtab.*); 47 46 } 48 47 _gp = . + 0x8000; … … 51 50 52 51 kdata_end = .; 53 54 .comment 0 : { *(.comment); }55 .debug_abbrev 0 : { *(.debug_abbrev); }56 .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); }57 .debug_addr 0 : { *(.debug_addr); }58 .debug_aranges 0 : { *(.debug_aranges); }59 .debug_cu_index 0 : { *(.debug_cu_index); }60 .debug_frame 0 : { *(.debug_frame); }61 .debug_frame_hdr 0 : { *(.debug_frame_hdr); }62 .debug_info 0 : { *(.debug_info); }63 .debug_info.dwo 0 : { *(.debug_info.dwo); }64 .debug_line 0 : { *(.debug_line); }65 .debug_line.dwo 0 : { *(.debug_line.dwo); }66 .debug_line_str 0 : { *(.debug_line_str); }67 .debug_loc 0 : { *(.debug_loc); }68 .debug_loclists 0 : { *(.debug_loclists); }69 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); }70 .debug_macinfo 0 : { *(.debug_macinfo); }71 .debug_macro 0 : { *(.debug_macro); }72 .debug_macro.dwo 0 : { *(.debug_macro.dwo); }73 .debug_names 0 : { *(.debug_names); }74 .debug_pubnames 0 : { *(.debug_pubnames); }75 .debug_pubtypes 0 : { *(.debug_pubtypes); }76 .debug_ranges 0 : { *(.debug_ranges); }77 .debug_rnglists 0 : { *(.debug_rnglists); }78 .debug_str 0 : { *(.debug_str); }79 .debug_str.dwo 0 : { *(.debug_str.dwo); }80 .debug_str_offsets 0 : { *(.debug_str_offsets); }81 .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); }82 .debug_tu_index 0 : { *(.debug_tu_index); }83 .debug_types 0 : { *(.debug_types); }84 52 85 53 /DISCARD/ : {
Note:
See TracChangeset
for help on using the changeset viewer.
