uml.lds.S (5c34202b8bf942da411b6599668a76b07449bbfd) | uml.lds.S (7664709b44a13e2e0b545e2dd8e7b8797a1748dc) |
---|---|
1#include <asm-generic/vmlinux.lds.h> 2 3OUTPUT_FORMAT(ELF_FORMAT) 4OUTPUT_ARCH(ELF_ARCH) 5ENTRY(_start) 6jiffies = jiffies_64; 7 8SECTIONS --- 23 unchanged lines hidden (view full) --- 32 _sinittext = .; 33 *(.init.text) 34 _einittext = .; 35 } 36 . = ALIGN(4096); 37 38 .text : 39 { | 1#include <asm-generic/vmlinux.lds.h> 2 3OUTPUT_FORMAT(ELF_FORMAT) 4OUTPUT_ARCH(ELF_ARCH) 5ENTRY(_start) 6jiffies = jiffies_64; 7 8SECTIONS --- 23 unchanged lines hidden (view full) --- 32 _sinittext = .; 33 *(.init.text) 34 _einittext = .; 35 } 36 . = ALIGN(4096); 37 38 .text : 39 { |
40 *(.text) | 40 TEXT_TEXT |
41 SCHED_TEXT 42 LOCK_TEXT 43 *(.fixup) 44 /* .gnu.warning sections are handled specially by elf32.em. */ 45 *(.gnu.warning) 46 *(.gnu.linkonce.t*) 47 48 . = ALIGN(4096); --- 60 unchanged lines hidden --- | 41 SCHED_TEXT 42 LOCK_TEXT 43 *(.fixup) 44 /* .gnu.warning sections are handled specially by elf32.em. */ 45 *(.gnu.warning) 46 *(.gnu.linkonce.t*) 47 48 . = ALIGN(4096); --- 60 unchanged lines hidden --- |