vmlinux.lds.S (405d967dc70002991f8fc35c20e0d3cbc7614f63) | vmlinux.lds.S (023bf6f1b8bf58dc4da7f0dc1cf4787b0d5297c1) |
---|---|
1/* 2 * arch/xtensa/kernel/vmlinux.lds.S 3 * 4 * Xtensa linker script 5 * 6 * This file is subject to the terms and conditions of the GNU General Public 7 * License. See the file "COPYING" in the main directory of this archive 8 * for more details. --- 266 unchanged lines hidden (view full) --- 275 .initrd : { *(.initrd) } 276 __initrd_end = .; 277 278 .ResetVector.text XCHAL_RESET_VECTOR_VADDR : 279 { 280 *(.ResetVector.text) 281 } 282 | 1/* 2 * arch/xtensa/kernel/vmlinux.lds.S 3 * 4 * Xtensa linker script 5 * 6 * This file is subject to the terms and conditions of the GNU General Public 7 * License. See the file "COPYING" in the main directory of this archive 8 * for more details. --- 266 unchanged lines hidden (view full) --- 275 .initrd : { *(.initrd) } 276 __initrd_end = .; 277 278 .ResetVector.text XCHAL_RESET_VECTOR_VADDR : 279 { 280 *(.ResetVector.text) 281 } 282 |
283 /* Sections to be discarded */ 284 /DISCARD/ : 285 { 286 *(.exit.literal) 287 EXIT_TEXT 288 EXIT_DATA 289 *(.exitcall.exit) 290 *(.discard) 291 } 292 | |
293 .xt.lit : { *(.xt.lit) } 294 .xt.prop : { *(.xt.prop) } 295 296 .debug 0 : { *(.debug) } 297 .line 0 : { *(.line) } 298 .debug_srcinfo 0 : { *(.debug_srcinfo) } 299 .debug_sfnames 0 : { *(.debug_sfnames) } 300 .debug_aranges 0 : { *(.debug_aranges) } --- 16 unchanged lines hidden (view full) --- 317 *(.gnu.linkonce.x*) 318 } 319 320 .xt.lit 0 : 321 { 322 *(.xt.lit) 323 *(.gnu.linkonce.p*) 324 } | 283 .xt.lit : { *(.xt.lit) } 284 .xt.prop : { *(.xt.prop) } 285 286 .debug 0 : { *(.debug) } 287 .line 0 : { *(.line) } 288 .debug_srcinfo 0 : { *(.debug_srcinfo) } 289 .debug_sfnames 0 : { *(.debug_sfnames) } 290 .debug_aranges 0 : { *(.debug_aranges) } --- 16 unchanged lines hidden (view full) --- 307 *(.gnu.linkonce.x*) 308 } 309 310 .xt.lit 0 : 311 { 312 *(.xt.lit) 313 *(.gnu.linkonce.p*) 314 } |
315 316 /* Sections to be discarded */ 317 DISCARDS 318 /DISCARD/ : { *(.exit.literal) } |
|
325} | 319} |