Changeset da13982 in mainline for kernel/arch
- Timestamp:
- 2023-10-26T15:20:07Z (2 years 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)
- Location:
- kernel/arch
- Files:
-
- 10 edited
-
abs32le/_link.ld.in (modified) (2 diffs)
-
amd64/_link.ld.in (modified) (1 diff)
-
arm32/_link.ld.in (modified) (2 diffs)
-
arm64/_link.ld.in (modified) (1 diff)
-
ia32/_link.ld.in (modified) (1 diff)
-
ia64/_link.ld.in (modified) (2 diffs)
-
mips32/_link.ld.in (modified) (3 diffs)
-
ppc32/_link.ld.in (modified) (2 diffs)
-
riscv64/_link.ld.in (modified) (2 diffs)
-
sparc64/_link.ld.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/_link.ld.in
rd28bdbe rda13982 12 12 *(COMMON); /* global variables */ 13 13 14 *(.rodata*); 14 *(.rodata .rodata.*); 15 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 16 *(.eh_frame_hdr .eh_frame_hdr.*); 15 17 *(.sdata); 16 18 *(.reginfo); 17 . = ALIGN(8);18 symbol_table = .;19 *(symtab.*);20 19 } 21 20 .sbss : { … … 26 25 kdata_end = .; 27 26 27 .comment 0 : { *(.comment); } 28 .debug_abbrev 0 : { *(.debug_abbrev); } 29 .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); } 30 .debug_addr 0 : { *(.debug_addr); } 31 .debug_aranges 0 : { *(.debug_aranges); } 32 .debug_cu_index 0 : { *(.debug_cu_index); } 33 .debug_frame 0 : { *(.debug_frame); } 34 .debug_frame_hdr 0 : { *(.debug_frame_hdr); } 35 .debug_info 0 : { *(.debug_info); } 36 .debug_info.dwo 0 : { *(.debug_info.dwo); } 37 .debug_line 0 : { *(.debug_line); } 38 .debug_line.dwo 0 : { *(.debug_line.dwo); } 39 .debug_line_str 0 : { *(.debug_line_str); } 40 .debug_loc 0 : { *(.debug_loc); } 41 .debug_loclists 0 : { *(.debug_loclists); } 42 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); } 43 .debug_macinfo 0 : { *(.debug_macinfo); } 44 .debug_macro 0 : { *(.debug_macro); } 45 .debug_macro.dwo 0 : { *(.debug_macro.dwo); } 46 .debug_names 0 : { *(.debug_names); } 47 .debug_pubnames 0 : { *(.debug_pubnames); } 48 .debug_pubtypes 0 : { *(.debug_pubtypes); } 49 .debug_ranges 0 : { *(.debug_ranges); } 50 .debug_rnglists 0 : { *(.debug_rnglists); } 51 .debug_str 0 : { *(.debug_str); } 52 .debug_str.dwo 0 : { *(.debug_str.dwo); } 53 .debug_str_offsets 0 : { *(.debug_str_offsets); } 54 .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); } 55 .debug_tu_index 0 : { *(.debug_tu_index); } 56 .debug_types 0 : { *(.debug_types); } 57 28 58 /DISCARD/ : { 29 59 *(.mdebug*); -
kernel/arch/amd64/_link.ld.in
rd28bdbe rda13982 30 30 kdata_start = .; 31 31 *(.data); /* initialized data */ 32 *(.rodata .rodata.*); /* string literals */ 32 *(.rodata .rodata.*); 33 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 34 *(.eh_frame_hdr .eh_frame_hdr.*); 33 35 *(COMMON); /* global variables */ 34 36 35 37 /* bss can't be omitted from the ELF image. */ 36 38 *(.bss); /* uninitialized static variables */ 37 38 . = ALIGN(8);39 symbol_table = .;40 *(symtab.*); /* Symbol table, must be LAST symbol!*/41 42 39 kdata_end = .; 43 40 } 44 41 45 #ifdef CONFIG_LINE_DEBUG46 42 .comment 0 : { *(.comment); } 47 43 .debug_abbrev 0 : { *(.debug_abbrev); } 44 .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); } 45 .debug_addr 0 : { *(.debug_addr); } 48 46 .debug_aranges 0 : { *(.debug_aranges); } 47 .debug_cu_index 0 : { *(.debug_cu_index); } 48 .debug_frame 0 : { *(.debug_frame); } 49 .debug_frame_hdr 0 : { *(.debug_frame_hdr); } 49 50 .debug_info 0 : { *(.debug_info); } 51 .debug_info.dwo 0 : { *(.debug_info.dwo); } 50 52 .debug_line 0 : { *(.debug_line); } 53 .debug_line.dwo 0 : { *(.debug_line.dwo); } 54 .debug_line_str 0 : { *(.debug_line_str); } 51 55 .debug_loc 0 : { *(.debug_loc); } 56 .debug_loclists 0 : { *(.debug_loclists); } 57 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); } 58 .debug_macinfo 0 : { *(.debug_macinfo); } 59 .debug_macro 0 : { *(.debug_macro); } 60 .debug_macro.dwo 0 : { *(.debug_macro.dwo); } 61 .debug_names 0 : { *(.debug_names); } 52 62 .debug_pubnames 0 : { *(.debug_pubnames); } 53 63 .debug_pubtypes 0 : { *(.debug_pubtypes); } 54 64 .debug_ranges 0 : { *(.debug_ranges); } 65 .debug_rnglists 0 : { *(.debug_rnglists); } 55 66 .debug_str 0 : { *(.debug_str); } 56 #endif 67 .debug_str.dwo 0 : { *(.debug_str.dwo); } 68 .debug_str_offsets 0 : { *(.debug_str_offsets); } 69 .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); } 70 .debug_tu_index 0 : { *(.debug_tu_index); } 71 .debug_types 0 : { *(.debug_types); } 57 72 58 73 /DISCARD/ : { -
kernel/arch/arm32/_link.ld.in
rd28bdbe rda13982 37 37 *(COMMON); /* global variables */ 38 38 39 *(.rodata*); 39 *(.rodata .rodata.*); 40 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 41 *(.eh_frame_hdr .eh_frame_hdr.*); 40 42 *(.sdata); 41 43 *(.reginfo); 42 . = ALIGN(8);43 symbol_table = .;44 *(symtab.*);45 44 } 46 45 .sbss : { … … 51 50 kdata_end = .; 52 51 52 .comment 0 : { *(.comment); } 53 .debug_abbrev 0 : { *(.debug_abbrev); } 54 .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); } 55 .debug_addr 0 : { *(.debug_addr); } 56 .debug_aranges 0 : { *(.debug_aranges); } 57 .debug_cu_index 0 : { *(.debug_cu_index); } 58 .debug_frame 0 : { *(.debug_frame); } 59 .debug_frame_hdr 0 : { *(.debug_frame_hdr); } 60 .debug_info 0 : { *(.debug_info); } 61 .debug_info.dwo 0 : { *(.debug_info.dwo); } 62 .debug_line 0 : { *(.debug_line); } 63 .debug_line.dwo 0 : { *(.debug_line.dwo); } 64 .debug_line_str 0 : { *(.debug_line_str); } 65 .debug_loc 0 : { *(.debug_loc); } 66 .debug_loclists 0 : { *(.debug_loclists); } 67 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); } 68 .debug_macinfo 0 : { *(.debug_macinfo); } 69 .debug_macro 0 : { *(.debug_macro); } 70 .debug_macro.dwo 0 : { *(.debug_macro.dwo); } 71 .debug_names 0 : { *(.debug_names); } 72 .debug_pubnames 0 : { *(.debug_pubnames); } 73 .debug_pubtypes 0 : { *(.debug_pubtypes); } 74 .debug_ranges 0 : { *(.debug_ranges); } 75 .debug_rnglists 0 : { *(.debug_rnglists); } 76 .debug_str 0 : { *(.debug_str); } 77 .debug_str.dwo 0 : { *(.debug_str.dwo); } 78 .debug_str_offsets 0 : { *(.debug_str_offsets); } 79 .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); } 80 .debug_tu_index 0 : { *(.debug_tu_index); } 81 .debug_types 0 : { *(.debug_types); } 82 53 83 /DISCARD/ : { 54 84 *(.mdebug*); -
kernel/arch/arm64/_link.ld.in
rd28bdbe rda13982 32 32 *(COMMON); /* global variables */ 33 33 34 *(.rodata*); 35 . = ALIGN(8); 36 symbol_table = .; 37 *(symtab.*); 34 *(.rodata .rodata.*); 35 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 36 *(.eh_frame_hdr .eh_frame_hdr.*); 38 37 39 38 kdata_end = .; 40 39 } 41 40 42 #ifdef CONFIG_LINE_DEBUG43 41 .comment 0 : { *(.comment); } 44 42 .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); } 46 47 .debug_frame 0 : { *(.debug_frame); } 48 .debug_frame_hdr 0 : { *(.debug_frame_hdr); } 47 49 .debug_info 0 : { *(.debug_info); } 50 .debug_info.dwo 0 : { *(.debug_info.dwo); } 48 51 .debug_line 0 : { *(.debug_line); } 52 .debug_line.dwo 0 : { *(.debug_line.dwo); } 53 .debug_line_str 0 : { *(.debug_line_str); } 49 54 .debug_loc 0 : { *(.debug_loc); } 55 .debug_loclists 0 : { *(.debug_loclists); } 56 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); } 50 57 .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); } 51 61 .debug_pubnames 0 : { *(.debug_pubnames); } 52 62 .debug_pubtypes 0 : { *(.debug_pubtypes); } 53 63 .debug_ranges 0 : { *(.debug_ranges); } 64 .debug_rnglists 0 : { *(.debug_rnglists); } 54 65 .debug_str 0 : { *(.debug_str); } 55 #endif 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); } 56 71 57 72 /DISCARD/ : { -
kernel/arch/ia32/_link.ld.in
rd28bdbe rda13982 29 29 kdata_start = .; 30 30 *(.data); /* initialized data */ 31 *(.rodata .rodata.*); /* string literals */ 31 *(.rodata .rodata.*); 32 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 33 *(.eh_frame_hdr .eh_frame_hdr.*); 32 34 *(COMMON); /* global variables */ 33 35 34 36 /* bss can't be omitted from the ELF image. */ 35 37 *(.bss); /* uninitialized static variables */ 36 37 . = ALIGN(8);38 symbol_table = .;39 *(symtab.*); /* Symbol table, must be LAST symbol! */40 38 kdata_end = .; 41 39 } 42 40 43 #ifdef CONFIG_LINE_DEBUG44 41 .comment 0 : { *(.comment); } 45 42 .debug_abbrev 0 : { *(.debug_abbrev); } 43 .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); } 44 .debug_addr 0 : { *(.debug_addr); } 46 45 .debug_aranges 0 : { *(.debug_aranges); } 46 .debug_cu_index 0 : { *(.debug_cu_index); } 47 .debug_frame 0 : { *(.debug_frame); } 48 .debug_frame_hdr 0 : { *(.debug_frame_hdr); } 47 49 .debug_info 0 : { *(.debug_info); } 50 .debug_info.dwo 0 : { *(.debug_info.dwo); } 48 51 .debug_line 0 : { *(.debug_line); } 52 .debug_line.dwo 0 : { *(.debug_line.dwo); } 53 .debug_line_str 0 : { *(.debug_line_str); } 49 54 .debug_loc 0 : { *(.debug_loc); } 55 .debug_loclists 0 : { *(.debug_loclists); } 56 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); } 57 .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); } 50 61 .debug_pubnames 0 : { *(.debug_pubnames); } 51 62 .debug_pubtypes 0 : { *(.debug_pubtypes); } 52 63 .debug_ranges 0 : { *(.debug_ranges); } 64 .debug_rnglists 0 : { *(.debug_rnglists); } 53 65 .debug_str 0 : { *(.debug_str); } 54 #endif 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 71 56 72 /DISCARD/ : { -
kernel/arch/ia64/_link.ld.in
rd28bdbe rda13982 24 24 kdata_start = .; 25 25 *(K_DATA_START) 26 *(.rodata .rodata.*) 26 *(.rodata .rodata.*); 27 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 28 *(.eh_frame_hdr .eh_frame_hdr.*); 27 29 *(.opd) 28 30 *(.data .data.*) … … 34 36 *(.bss) 35 37 *(COMMON); 36 37 . = ALIGN(8);38 symbol_table = .;39 *(symtab.*); /* Symbol table, must be LAST symbol!*/40 41 38 kdata_end = .; 42 39 } 40 41 .comment 0 : { *(.comment); } 42 .debug_abbrev 0 : { *(.debug_abbrev); } 43 .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); } 44 .debug_addr 0 : { *(.debug_addr); } 45 .debug_aranges 0 : { *(.debug_aranges); } 46 .debug_cu_index 0 : { *(.debug_cu_index); } 47 .debug_frame 0 : { *(.debug_frame); } 48 .debug_frame_hdr 0 : { *(.debug_frame_hdr); } 49 .debug_info 0 : { *(.debug_info); } 50 .debug_info.dwo 0 : { *(.debug_info.dwo); } 51 .debug_line 0 : { *(.debug_line); } 52 .debug_line.dwo 0 : { *(.debug_line.dwo); } 53 .debug_line_str 0 : { *(.debug_line_str); } 54 .debug_loc 0 : { *(.debug_loc); } 55 .debug_loclists 0 : { *(.debug_loclists); } 56 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); } 57 .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 .debug_pubnames 0 : { *(.debug_pubnames); } 62 .debug_pubtypes 0 : { *(.debug_pubtypes); } 63 .debug_ranges 0 : { *(.debug_ranges); } 64 .debug_rnglists 0 : { *(.debug_rnglists); } 65 .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); } 43 71 44 72 /DISCARD/ : { -
kernel/arch/mips32/_link.ld.in
rd28bdbe rda13982 34 34 kdata_start = .; 35 35 *(.data); /* initialized data */ 36 *(.rodata*); 36 *(.rodata .rodata.*); 37 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 38 *(.eh_frame_hdr .eh_frame_hdr.*); 37 39 *(.sdata); 38 40 *(.reginfo); … … 41 43 *(.bss); /* uninitialized static variables */ 42 44 *(COMMON); /* global variables */ 43 . = ALIGN(8);44 symbol_table = .;45 *(symtab.*);46 45 } 47 46 _gp = . + 0x8000; … … 50 49 51 50 kdata_end = .; 51 52 .comment 0 : { *(.comment); } 53 .debug_abbrev 0 : { *(.debug_abbrev); } 54 .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); } 55 .debug_addr 0 : { *(.debug_addr); } 56 .debug_aranges 0 : { *(.debug_aranges); } 57 .debug_cu_index 0 : { *(.debug_cu_index); } 58 .debug_frame 0 : { *(.debug_frame); } 59 .debug_frame_hdr 0 : { *(.debug_frame_hdr); } 60 .debug_info 0 : { *(.debug_info); } 61 .debug_info.dwo 0 : { *(.debug_info.dwo); } 62 .debug_line 0 : { *(.debug_line); } 63 .debug_line.dwo 0 : { *(.debug_line.dwo); } 64 .debug_line_str 0 : { *(.debug_line_str); } 65 .debug_loc 0 : { *(.debug_loc); } 66 .debug_loclists 0 : { *(.debug_loclists); } 67 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); } 68 .debug_macinfo 0 : { *(.debug_macinfo); } 69 .debug_macro 0 : { *(.debug_macro); } 70 .debug_macro.dwo 0 : { *(.debug_macro.dwo); } 71 .debug_names 0 : { *(.debug_names); } 72 .debug_pubnames 0 : { *(.debug_pubnames); } 73 .debug_pubtypes 0 : { *(.debug_pubtypes); } 74 .debug_ranges 0 : { *(.debug_ranges); } 75 .debug_rnglists 0 : { *(.debug_rnglists); } 76 .debug_str 0 : { *(.debug_str); } 77 .debug_str.dwo 0 : { *(.debug_str.dwo); } 78 .debug_str_offsets 0 : { *(.debug_str_offsets); } 79 .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); } 80 .debug_tu_index 0 : { *(.debug_tu_index); } 81 .debug_types 0 : { *(.debug_types); } 52 82 53 83 /DISCARD/ : { -
kernel/arch/ppc32/_link.ld.in
rd28bdbe rda13982 34 34 *(K_DATA_START); 35 35 *(.rodata .rodata.*); 36 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 37 *(.eh_frame_hdr .eh_frame_hdr.*); 36 38 *(.data); /* initialized data */ 37 39 *(.sdata); … … 40 42 *(.bss); /* uninitialized static variables */ 41 43 *(COMMON); /* global variables */ 42 43 . = ALIGN(8);44 symbol_table = .;45 *(symtab.*); /* Symbol table, must be LAST symbol!*/46 47 44 kdata_end = .; 48 45 } 46 47 .comment 0 : { *(.comment); } 48 .debug_abbrev 0 : { *(.debug_abbrev); } 49 .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); } 50 .debug_addr 0 : { *(.debug_addr); } 51 .debug_aranges 0 : { *(.debug_aranges); } 52 .debug_cu_index 0 : { *(.debug_cu_index); } 53 .debug_frame 0 : { *(.debug_frame); } 54 .debug_frame_hdr 0 : { *(.debug_frame_hdr); } 55 .debug_info 0 : { *(.debug_info); } 56 .debug_info.dwo 0 : { *(.debug_info.dwo); } 57 .debug_line 0 : { *(.debug_line); } 58 .debug_line.dwo 0 : { *(.debug_line.dwo); } 59 .debug_line_str 0 : { *(.debug_line_str); } 60 .debug_loc 0 : { *(.debug_loc); } 61 .debug_loclists 0 : { *(.debug_loclists); } 62 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); } 63 .debug_macinfo 0 : { *(.debug_macinfo); } 64 .debug_macro 0 : { *(.debug_macro); } 65 .debug_macro.dwo 0 : { *(.debug_macro.dwo); } 66 .debug_names 0 : { *(.debug_names); } 67 .debug_pubnames 0 : { *(.debug_pubnames); } 68 .debug_pubtypes 0 : { *(.debug_pubtypes); } 69 .debug_ranges 0 : { *(.debug_ranges); } 70 .debug_rnglists 0 : { *(.debug_rnglists); } 71 .debug_str 0 : { *(.debug_str); } 72 .debug_str.dwo 0 : { *(.debug_str.dwo); } 73 .debug_str_offsets 0 : { *(.debug_str_offsets); } 74 .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); } 75 .debug_tu_index 0 : { *(.debug_tu_index); } 76 .debug_types 0 : { *(.debug_types); } 49 77 50 78 /DISCARD/ : { -
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/ : { -
kernel/arch/sparc64/_link.ld.in
rd28bdbe rda13982 23 23 *(K_DATA_START) 24 24 *(.rodata .rodata.*); 25 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 26 *(.eh_frame_hdr .eh_frame_hdr.*); 25 27 *(.data); /* initialized data */ 26 28 *(.sdata); … … 30 32 *(.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.
