summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/kexec/kexec-tools/0001-arm64-Disable-PIC.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-kernel/kexec/kexec-tools/0001-arm64-Disable-PIC.patch')
-rw-r--r--meta/recipes-kernel/kexec/kexec-tools/0001-arm64-Disable-PIC.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-kernel/kexec/kexec-tools/0001-arm64-Disable-PIC.patch b/meta/recipes-kernel/kexec/kexec-tools/0001-arm64-Disable-PIC.patch
deleted file mode 100644
index 84e94d7d93..0000000000
--- a/meta/recipes-kernel/kexec/kexec-tools/0001-arm64-Disable-PIC.patch
+++ /dev/null
@@ -1,31 +0,0 @@
1From 3bb73e5e5649b455e15d5ca3a7ad1a90c4960972 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 10 Jun 2017 11:54:36 -0700
4Subject: [PATCH] arm64: Disable PIC
5
6Fix
7| cc1: sorry, unimplemented: code model 'large' with -fPIC
8| make: *** [Makefile:118: purgatory/arch/arm64/entry.o] Error 1
9
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12Upstream-Status: Pending
13
14 purgatory/arch/arm64/Makefile | 1 +
15 1 file changed, 1 insertion(+)
16
17diff --git a/purgatory/arch/arm64/Makefile b/purgatory/arch/arm64/Makefile
18index 636abea..80068ca 100644
19--- a/purgatory/arch/arm64/Makefile
20+++ b/purgatory/arch/arm64/Makefile
21@@ -1,6 +1,7 @@
22
23 arm64_PURGATORY_EXTRA_CFLAGS = \
24 -mcmodel=large \
25+ -fno-PIC \
26 -fno-stack-protector \
27 -fno-asynchronous-unwind-tables \
28 -Wundef \
29--
302.13.1
31