summaryrefslogtreecommitdiff
path: root/libre/syslinux/strip_note_section.patch
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2019-04-15 09:55:41 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2019-04-15 09:55:41 -0500
commit859c853ee4ecbb8ee958e3b61e12fca9aca8cd53 (patch)
tree6b69522fdd41a91da8a8b1d22c3e9bf5f4eb65dd /libre/syslinux/strip_note_section.patch
parent4106007657ac82b8df2219ea4b7c97686055f4f9 (diff)
syslinux-6.04.pre2.r11.gbf6db5b4-1.par1: updating version
Diffstat (limited to 'libre/syslinux/strip_note_section.patch')
-rw-r--r--libre/syslinux/strip_note_section.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/libre/syslinux/strip_note_section.patch b/libre/syslinux/strip_note_section.patch
deleted file mode 100644
index b71b69d07..000000000
--- a/libre/syslinux/strip_note_section.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Author: Lukas Schwaighofer <lukas@schwaighofer.name>
-Description: Strip the .note.gnu.property section for the mbr. This section is
- added since binutils Debian version 2.31.1-2 and causes mbr.bin to grow in
- size beyond what can fit into the master boot record.
----
- mbr/i386/mbr.ld | 1 +
- mbr/x86_64/mbr.ld | 1 +
- 2 files changed, 2 insertions(+)
-
-diff --git a/mbr/i386/mbr.ld b/mbr/i386/mbr.ld
-index d14ba80..5368346 100644
---- a/mbr/i386/mbr.ld
-+++ b/mbr/i386/mbr.ld
-@@ -70,4 +70,5 @@ SECTIONS
- .debug_typenames 0 : { *(.debug_typenames) }
- .debug_varnames 0 : { *(.debug_varnames) }
- /DISCARD/ : { *(.note.GNU-stack) }
-+ /DISCARD/ : { *(.note.gnu.property) }
- }
-diff --git a/mbr/x86_64/mbr.ld b/mbr/x86_64/mbr.ld
-index ae27d49..b8c0d89 100644
---- a/mbr/x86_64/mbr.ld
-+++ b/mbr/x86_64/mbr.ld
-@@ -69,4 +69,5 @@ SECTIONS
- .debug_typenames 0 : { *(.debug_typenames) }
- .debug_varnames 0 : { *(.debug_varnames) }
- /DISCARD/ : { *(.note.GNU-stack) }
-+ /DISCARD/ : { *(.note.gnu.property) }
- }