diff options
Diffstat (limited to 'include/asm-generic')
-rw-r--r-- | include/asm-generic/vmlinux.lds.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h index 6f857be2b644..a9c55490fb82 100644 --- a/include/asm-generic/vmlinux.lds.h +++ b/include/asm-generic/vmlinux.lds.h | |||
@@ -103,3 +103,41 @@ | |||
103 | VMLINUX_SYMBOL(__kprobes_text_start) = .; \ | 103 | VMLINUX_SYMBOL(__kprobes_text_start) = .; \ |
104 | *(.kprobes.text) \ | 104 | *(.kprobes.text) \ |
105 | VMLINUX_SYMBOL(__kprobes_text_end) = .; | 105 | VMLINUX_SYMBOL(__kprobes_text_end) = .; |
106 | |||
107 | /* DWARF debug sections. | ||
108 | Symbols in the DWARF debugging sections are relative to | ||
109 | the beginning of the section so we begin them at 0. */ | ||
110 | #define DWARF_DEBUG \ | ||
111 | /* DWARF 1 */ \ | ||
112 | .debug 0 : { *(.debug) } \ | ||
113 | .line 0 : { *(.line) } \ | ||
114 | /* GNU DWARF 1 extensions */ \ | ||
115 | .debug_srcinfo 0 : { *(.debug_srcinfo) } \ | ||
116 | .debug_sfnames 0 : { *(.debug_sfnames) } \ | ||
117 | /* DWARF 1.1 and DWARF 2 */ \ | ||
118 | .debug_aranges 0 : { *(.debug_aranges) } \ | ||
119 | .debug_pubnames 0 : { *(.debug_pubnames) } \ | ||
120 | /* DWARF 2 */ \ | ||
121 | .debug_info 0 : { *(.debug_info \ | ||
122 | .gnu.linkonce.wi.*) } \ | ||
123 | .debug_abbrev 0 : { *(.debug_abbrev) } \ | ||
124 | .debug_line 0 : { *(.debug_line) } \ | ||
125 | .debug_frame 0 : { *(.debug_frame) } \ | ||
126 | .debug_str 0 : { *(.debug_str) } \ | ||
127 | .debug_loc 0 : { *(.debug_loc) } \ | ||
128 | .debug_macinfo 0 : { *(.debug_macinfo) } \ | ||
129 | /* SGI/MIPS DWARF 2 extensions */ \ | ||
130 | .debug_weaknames 0 : { *(.debug_weaknames) } \ | ||
131 | .debug_funcnames 0 : { *(.debug_funcnames) } \ | ||
132 | .debug_typenames 0 : { *(.debug_typenames) } \ | ||
133 | .debug_varnames 0 : { *(.debug_varnames) } \ | ||
134 | |||
135 | /* Stabs debugging sections. */ | ||
136 | #define STABS_DEBUG \ | ||
137 | .stab 0 : { *(.stab) } \ | ||
138 | .stabstr 0 : { *(.stabstr) } \ | ||
139 | .stab.excl 0 : { *(.stab.excl) } \ | ||
140 | .stab.exclstr 0 : { *(.stab.exclstr) } \ | ||
141 | .stab.index 0 : { *(.stab.index) } \ | ||
142 | .stab.indexstr 0 : { *(.stab.indexstr) } \ | ||
143 | .comment 0 : { *(.comment) } | ||