1 /* ld script to make m68k Linux kernel */
3 #include <asm-generic/vmlinux.lds.h>
5 OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf32-m68k")
8 jiffies = jiffies_64 + 4;
12 _text = .; /* Text and read-only data */
20 . = ALIGN(16); /* Exception table */
21 __start___ex_table = .;
22 __ex_table : { *(__ex_table) }
23 __stop___ex_table = .;
27 _etext = .; /* End of text section */
34 .bss : { *(.bss) } /* BSS */
37 .data.cacheline_aligned : { *(.data.cacheline_aligned) } :data
39 _edata = .; /* End of data section */
41 /* will be freed after init */
42 . = ALIGN(4096); /* Init code and data */
49 .init.data : { *(.init.data) }
52 .init.setup : { *(.init.setup) }
65 __con_initcall_start = .;
66 .con_initcall.init : { *(.con_initcall.init) }
67 __con_initcall_end = .;
70 __initramfs_start = .;
71 .init.ramfs : { *(.init.ramfs) }
76 .data.init_task : { *(.data.init_task) } /* The initial task and kernel stack */
80 /* Sections to be discarded */
87 /* Stabs debugging sections. */
88 .stab 0 : { *(.stab) }
89 .stabstr 0 : { *(.stabstr) }
90 .stab.excl 0 : { *(.stab.excl) }
91 .stab.exclstr 0 : { *(.stab.exclstr) }
92 .stab.index 0 : { *(.stab.index) }
93 .stab.indexstr 0 : { *(.stab.indexstr) }
94 .comment 0 : { *(.comment) }