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 */
22 _etext = .; /* End of text section */
24 . = ALIGN(16); /* Exception table */
25 __start___ex_table = .;
26 __ex_table : { *(__ex_table) }
27 __stop___ex_table = .;
36 .bss : { *(.bss) } /* BSS */
39 .data.cacheline_aligned : { *(.data.cacheline_aligned) } :data
41 _edata = .; /* End of data section */
43 /* will be freed after init */
44 . = ALIGN(4096); /* Init code and data */
51 .init.data : { *(.init.data) }
54 .init.setup : { *(.init.setup) }
61 __con_initcall_start = .;
62 .con_initcall.init : { *(.con_initcall.init) }
63 __con_initcall_end = .;
70 #ifdef CONFIG_BLK_DEV_INITRD
72 __initramfs_start = .;
73 .init.ramfs : { *(.init.ramfs) }
79 .data.init_task : { *(.data.init_task) } /* The initial task and kernel stack */
83 /* Sections to be discarded */
90 /* Stabs debugging sections. */
91 .stab 0 : { *(.stab) }
92 .stabstr 0 : { *(.stabstr) }
93 .stab.excl 0 : { *(.stab.excl) }
94 .stab.exclstr 0 : { *(.stab.exclstr) }
95 .stab.index 0 : { *(.stab.index) }
96 .stab.indexstr 0 : { *(.stab.indexstr) }
97 .comment 0 : { *(.comment) }