vmlinux.lds.S (e039ee4ee3fcf174736f2cb0a2eed6cb908348a6) | vmlinux.lds.S (07c802bd7c3951410b105356787d655e273ab537) |
---|---|
1/* 2 * ld script to make ARM Linux kernel 3 * taken from the i386 version by Russell King 4 * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz> 5 */ 6 7#include <asm-generic/vmlinux.lds.h> 8#include <asm/thread_info.h> 9#include <asm/memory.h> 10#include <asm/page.h> 11 12#include "image.h" 13 | 1/* 2 * ld script to make ARM Linux kernel 3 * taken from the i386 version by Russell King 4 * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz> 5 */ 6 7#include <asm-generic/vmlinux.lds.h> 8#include <asm/thread_info.h> 9#include <asm/memory.h> 10#include <asm/page.h> 11 12#include "image.h" 13 |
14#define ARM_EXIT_KEEP(x) 15#define ARM_EXIT_DISCARD(x) x | 14/* .exit.text needed in case of alternative patching */ 15#define ARM_EXIT_KEEP(x) x 16#define ARM_EXIT_DISCARD(x) |
16 17OUTPUT_ARCH(aarch64) 18ENTRY(_text) 19 20jiffies = jiffies_64; 21 22#define HYPERVISOR_TEXT \ 23 /* \ --- 137 unchanged lines hidden --- | 17 18OUTPUT_ARCH(aarch64) 19ENTRY(_text) 20 21jiffies = jiffies_64; 22 23#define HYPERVISOR_TEXT \ 24 /* \ --- 137 unchanged lines hidden --- |