vmlinux-std.lds (5a84d159061d914c8dd4aa372ac6e9529c2be453) | vmlinux-std.lds (7664709b44a13e2e0b545e2dd8e7b8797a1748dc) |
---|---|
1/* ld script to make m68k Linux kernel */ 2 3#include <asm-generic/vmlinux.lds.h> 4 5OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf32-m68k") 6OUTPUT_ARCH(m68k) 7ENTRY(_start) 8jiffies = jiffies_64 + 4; 9SECTIONS 10{ 11 . = 0x1000; 12 _text = .; /* Text and read-only data */ 13 .text : { | 1/* ld script to make m68k Linux kernel */ 2 3#include <asm-generic/vmlinux.lds.h> 4 5OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf32-m68k") 6OUTPUT_ARCH(m68k) 7ENTRY(_start) 8jiffies = jiffies_64 + 4; 9SECTIONS 10{ 11 . = 0x1000; 12 _text = .; /* Text and read-only data */ 13 .text : { |
14 *(.text) | 14 TEXT_TEXT |
15 SCHED_TEXT 16 LOCK_TEXT 17 *(.fixup) 18 *(.gnu.warning) 19 } :text = 0x4e75 20 21 . = ALIGN(16); /* Exception table */ 22 __start___ex_table = .; --- 70 unchanged lines hidden --- | 15 SCHED_TEXT 16 LOCK_TEXT 17 *(.fixup) 18 *(.gnu.warning) 19 } :text = 0x4e75 20 21 . = ALIGN(16); /* Exception table */ 22 __start___ex_table = .; --- 70 unchanged lines hidden --- |