31 lines
845 B
Diff
31 lines
845 B
Diff
From 364351b4448ff20730250e89ad09088d6aeafc72 Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@cutlet.install.bos.redhat.com>
|
|
Date: Fri, 3 Oct 2008 14:40:56 -0400
|
|
Subject: [PATCH] Add an ignore for .note.GNU-stack section in the linker map.
|
|
|
|
diff --git a/gnuefi/elf_ia32_efi.lds b/gnuefi/elf_ia32_efi.lds
|
|
index bc29799..b15b36d 100644
|
|
--- a/gnuefi/elf_ia32_efi.lds
|
|
+++ b/gnuefi/elf_ia32_efi.lds
|
|
@@ -58,5 +58,7 @@ SECTIONS
|
|
{
|
|
*(.rel.reloc)
|
|
*(.eh_frame)
|
|
+ *(.note.GNU-stack)
|
|
}
|
|
+ .comment 0 : { *(.comment) }
|
|
}
|
|
diff --git a/gnuefi/elf_x86_64_efi.lds b/gnuefi/elf_x86_64_efi.lds
|
|
index 9c0a9f8..d0ae5f0 100644
|
|
--- a/gnuefi/elf_x86_64_efi.lds
|
|
+++ b/gnuefi/elf_x86_64_efi.lds
|
|
@@ -54,5 +54,8 @@ SECTIONS
|
|
.ignored.reloc :
|
|
{
|
|
*(.rela.reloc)
|
|
+ *(.eh_frame)
|
|
+ *(.note.GNU-stack)
|
|
}
|
|
+ .comment 0 : { *(.comment) }
|
|
}
|