1 /* ld script to make m68k Linux kernel */
2 OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf32-m68k")
8 _text = .; /* Text and read-only data */
13 *(.text.lock) /* out-of-line lock text */
16 .kstrtab : { *(.kstrtab) }
19 _etext = .; /* End of text section */
25 . = ALIGN(16); /* Exception table */
26 __start___ex_table = .;
28 __stop___ex_table = .;
29 __start___ksymtab = .; /* Kernel symbol table */
33 /* End of data goes *here* so that freeing init code works properly. */
36 . = ALIGN(8192); /* Init code and data */
38 .text.init : { *(.text.init) }
39 .data.init : { *(.data.init) }
42 .setup.init : { *(.setup.init) }
45 .initcall.init : { *(.initcall.init) }
49 .init.task : { *(init_task) }
52 .bss : { *(.bss) } /* BSS */
57 /* Stabs debugging sections. */