vmlinux-sun3.lds (5a84d159061d914c8dd4aa372ac6e9529c2be453) | vmlinux-sun3.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 . = 0xE002000; 12 _text = .; /* Text and read-only data */ 13 .text : { 14 *(.head) | 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 . = 0xE002000; 12 _text = .; /* Text and read-only data */ 13 .text : { 14 *(.head) |
15 *(.text) | 15 TEXT_TEXT |
16 SCHED_TEXT 17 LOCK_TEXT 18 *(.fixup) 19 *(.gnu.warning) 20 } :text = 0x4e75 21 RODATA 22 23 _etext = .; /* End of text section */ --- 69 unchanged lines hidden --- | 16 SCHED_TEXT 17 LOCK_TEXT 18 *(.fixup) 19 *(.gnu.warning) 20 } :text = 0x4e75 21 RODATA 22 23 _etext = .; /* End of text section */ --- 69 unchanged lines hidden --- |