vmlinux-std.lds (405d967dc70002991f8fc35c20e0d3cbc7614f63) | vmlinux-std.lds (023bf6f1b8bf58dc4da7f0dc1cf4787b0d5297c1) |
---|---|
1/* ld script to make m68k Linux kernel */ 2 3#include <asm-generic/vmlinux.lds.h> 4#include <asm/page.h> 5 6OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf32-m68k") 7OUTPUT_ARCH(m68k) 8ENTRY(_start) --- 68 unchanged lines hidden (view full) --- 77 NOTES 78 . = ALIGN(8192); 79 __init_end = .; 80 81 .data.init_task : { *(.data.init_task) } /* The initial task and kernel stack */ 82 83 _end = . ; 84 | 1/* ld script to make m68k Linux kernel */ 2 3#include <asm-generic/vmlinux.lds.h> 4#include <asm/page.h> 5 6OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf32-m68k") 7OUTPUT_ARCH(m68k) 8ENTRY(_start) --- 68 unchanged lines hidden (view full) --- 77 NOTES 78 . = ALIGN(8192); 79 __init_end = .; 80 81 .data.init_task : { *(.data.init_task) } /* The initial task and kernel stack */ 82 83 _end = . ; 84 |
85 /* Sections to be discarded */ 86 /DISCARD/ : { 87 EXIT_TEXT 88 EXIT_DATA 89 *(.exitcall.exit) 90 *(.discard) 91 } 92 | |
93 /* Stabs debugging sections. */ 94 .stab 0 : { *(.stab) } 95 .stabstr 0 : { *(.stabstr) } 96 .stab.excl 0 : { *(.stab.excl) } 97 .stab.exclstr 0 : { *(.stab.exclstr) } 98 .stab.index 0 : { *(.stab.index) } 99 .stab.indexstr 0 : { *(.stab.indexstr) } 100 .comment 0 : { *(.comment) } | 85 /* Stabs debugging sections. */ 86 .stab 0 : { *(.stab) } 87 .stabstr 0 : { *(.stabstr) } 88 .stab.excl 0 : { *(.stab.excl) } 89 .stab.exclstr 0 : { *(.stab.exclstr) } 90 .stab.index 0 : { *(.stab.index) } 91 .stab.indexstr 0 : { *(.stab.indexstr) } 92 .comment 0 : { *(.comment) } |
93 94 /* Sections to be discarded */ 95 DISCARDS |
|
101} | 96} |