Blame SOURCES/0010-strip-.eh_frame-section-from-arm64-efi-kernel.patch

d41074
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
a85e8e
From: Andrey Borzenkov <arvidjaar@gmail.com>
a85e8e
Date: Mon, 30 Dec 2013 12:56:19 +0000
d41074
Subject: [PATCH] strip .eh_frame section from arm64-efi kernel
a85e8e
a85e8e
Fixes grub-mkimage error "relocation 0x105 is not implemented yet."
a85e8e
---
a85e8e
 grub-core/Makefile.core.def | 2 +-
d41074
 ChangeLog                   | 4 ++++
a85e8e
 2 files changed, 5 insertions(+), 1 deletion(-)
a85e8e
a85e8e
diff --git a/grub-core/Makefile.core.def b/grub-core/Makefile.core.def
d41074
index c916246de27..42443bc00b9 100644
a85e8e
--- a/grub-core/Makefile.core.def
a85e8e
+++ b/grub-core/Makefile.core.def
a85e8e
@@ -66,7 +66,7 @@ kernel = {
a85e8e
   arm_efi_stripflags       = '--strip-unneeded -K start -R .note -R .comment -R .note.gnu.gold-version';
a85e8e
 
a85e8e
   arm64_efi_ldflags          = '-Wl,-r,-d';
a85e8e
-  arm64_efi_stripflags       = '--strip-unneeded -K start -R .note -R .comment -R .note.gnu.gold-version';
a85e8e
+  arm64_efi_stripflags       = '--strip-unneeded -K start -R .note -R .comment -R .note.gnu.gold-version -R .eh_frame';
a85e8e
 
a85e8e
   i386_pc_ldflags          = '$(TARGET_IMG_LDFLAGS)';
a85e8e
   i386_pc_ldflags          = '$(TARGET_IMG_BASE_LDOPT),0x9000';
d41074
diff --git a/ChangeLog b/ChangeLog
d41074
index db843006df9..8c1ececa1ed 100644
d41074
--- a/ChangeLog
d41074
+++ b/ChangeLog
d41074
@@ -1,3 +1,7 @@
d41074
+2013-12-30  Andrey Borzenkov <arvidjaar@gmail.com>
d41074
+
d41074
+	* grub-core/Makefile.core.def: strip .eh_frame section for arm64-efi.
d41074
+
d41074
 2013-12-30  Vladimir Serbinenko  <phcoder@gmail.com>
d41074
 
d41074
 	* NEWS: Add few missing entries. Correct existing ones.