|
|
6b3c76 |
From 5274da98cb155276f8b692340ec6cc4e26beb9b4 Mon Sep 17 00:00:00 2001
|
|
|
a85e8e |
From: Andrey Borzenkov <arvidjaar@gmail.com>
|
|
|
a85e8e |
Date: Mon, 30 Dec 2013 12:56:19 +0000
|
|
|
6b3c76 |
Subject: [PATCH 010/261] strip .eh_frame section from arm64-efi kernel
|
|
|
a85e8e |
|
|
|
a85e8e |
Fixes grub-mkimage error "relocation 0x105 is not implemented yet."
|
|
|
a85e8e |
---
|
|
|
d41074 |
ChangeLog | 4 ++++
|
|
|
6b3c76 |
grub-core/Makefile.core.def | 2 +-
|
|
|
a85e8e |
2 files changed, 5 insertions(+), 1 deletion(-)
|
|
|
a85e8e |
|
|
|
6b3c76 |
diff --git a/ChangeLog b/ChangeLog
|
|
|
6b3c76 |
index db843006d..8c1ececa1 100644
|
|
|
6b3c76 |
--- a/ChangeLog
|
|
|
6b3c76 |
+++ b/ChangeLog
|
|
|
6b3c76 |
@@ -1,3 +1,7 @@
|
|
|
6b3c76 |
+2013-12-30 Andrey Borzenkov <arvidjaar@gmail.com>
|
|
|
6b3c76 |
+
|
|
|
6b3c76 |
+ * grub-core/Makefile.core.def: strip .eh_frame section for arm64-efi.
|
|
|
6b3c76 |
+
|
|
|
6b3c76 |
2013-12-30 Vladimir Serbinenko <phcoder@gmail.com>
|
|
|
6b3c76 |
|
|
|
6b3c76 |
* NEWS: Add few missing entries. Correct existing ones.
|
|
|
a85e8e |
diff --git a/grub-core/Makefile.core.def b/grub-core/Makefile.core.def
|
|
|
6b3c76 |
index c916246de..42443bc00 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';
|
|
|
6b3c76 |
--
|
|
|
6b3c76 |
2.13.5
|
|
|
6b3c76 |
|