From f1aa00224b23e2b4c71f204c1417c7b6e5ea8e51 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 19 May 2009 21:44:29 -0700 Subject: [PATCH] core: fill unused space in .text with NOP not zero Fill unused space in the .text section with NOP, not with zero. Signed-off-by: H. Peter Anvin --- core/syslinux.ld | 1 + 1 file changed, 1 insertion(+) diff --git a/core/syslinux.ld b/core/syslinux.ld index 9149b9b..0d3c9ab 100644 --- a/core/syslinux.ld +++ b/core/syslinux.ld @@ -192,6 +192,7 @@ SECTIONS __text_vma = .; __text_lma = __pm_code_lma; .text : AT(__text_lma) { + FILL(0x90909090) __text_start = .; *(.text) __text_end = .; -- 2.7.4