diff mbox

[U-Boot,1/2] board/db410c: add missing linker map entries for efi

Message ID 20170620215525.10430-1-robdclark@gmail.com
State Accepted
Commit 0f546eaf003d5770d1bc6f7a88262b87eda59bb6
Delegated to: Tom Rini
Headers show

Commit Message

Rob Clark June 20, 2017, 9:55 p.m. UTC
Otherwise the loaded image would miss the efi_runtime sections, and fall
over hard when grub (for example) tried to call runtime services located
in this section.

Signed-off-by: Rob Clark <robdclark@gmail.com>
---
 board/qualcomm/dragonboard410c/u-boot.lds | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

Comments

Tom Rini June 24, 2017, 10:17 p.m. UTC | #1
On Tue, Jun 20, 2017 at 05:55:24PM -0400, Rob Clark wrote:

> Otherwise the loaded image would miss the efi_runtime sections, and fall
> over hard when grub (for example) tried to call runtime services located
> in this section.
> 
> Signed-off-by: Rob Clark <robdclark@gmail.com>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/board/qualcomm/dragonboard410c/u-boot.lds b/board/qualcomm/dragonboard410c/u-boot.lds
index 6e1c5a8..62ac4d7 100644
--- a/board/qualcomm/dragonboard410c/u-boot.lds
+++ b/board/qualcomm/dragonboard410c/u-boot.lds
@@ -43,6 +43,22 @@  SECTIONS
 
 	. = ALIGN(8);
 
+	.efi_runtime : {
+                __efi_runtime_start = .;
+		*(efi_runtime_text)
+		*(efi_runtime_data)
+                __efi_runtime_stop = .;
+	}
+
+	.efi_runtime_rel : {
+                __efi_runtime_rel_start = .;
+		*(.relaefi_runtime_text)
+		*(.relaefi_runtime_data)
+                __efi_runtime_rel_stop = .;
+	}
+
+	. = ALIGN(8);
+
 	.image_copy_end :
 	{
 		*(.__image_copy_end)