vmlinux-sun3.lds (405d967dc70002991f8fc35c20e0d3cbc7614f63) vmlinux-sun3.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)

--- 63 unchanged lines hidden (view full) ---

72 __init_end = .;
73 .data.init.task : { *(.data.init_task) }
74
75
76 .bss : { *(.bss) } /* BSS */
77
78 _end = . ;
79
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)

--- 63 unchanged lines hidden (view full) ---

72 __init_end = .;
73 .data.init.task : { *(.data.init_task) }
74
75
76 .bss : { *(.bss) } /* BSS */
77
78 _end = . ;
79
80 /* Sections to be discarded */
81 /DISCARD/ : {
82 EXIT_TEXT
83 EXIT_DATA
84 *(.exitcall.exit)
85 *(.discard)
86 }
87
88 .crap : {
89 /* Stabs debugging sections. */
90 *(.stab)
91 *(.stabstr)
92 *(.stab.excl)
93 *(.stab.exclstr)
94 *(.stab.index)
95 *(.stab.indexstr)
96 *(.comment)
97 *(.note)
98 }
99
80 .crap : {
81 /* Stabs debugging sections. */
82 *(.stab)
83 *(.stabstr)
84 *(.stab.excl)
85 *(.stab.exclstr)
86 *(.stab.index)
87 *(.stab.indexstr)
88 *(.comment)
89 *(.note)
90 }
91
92 /* Sections to be discarded */
93 DISCARDS
100}
94}