summaryrefslogtreecommitdiffstats
path: root/arch/x86/boot
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2020-01-28 11:54:05 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2020-01-28 11:54:05 -0800
commit6b90e71a472be131186276a5fd19d319fa2125d9 (patch)
treed293856c79ae78907b6be9fcdc286a9814d56a1a /arch/x86/boot
parentbcc8aff6af53907ecb60e5aa8b34fbd429408a7a (diff)
parentdacc9092336be20b01642afe1a51720b31f60369 (diff)
downloadlinux-6b90e71a472be131186276a5fd19d319fa2125d9.tar.gz
linux-6b90e71a472be131186276a5fd19d319fa2125d9.tar.bz2
linux-6b90e71a472be131186276a5fd19d319fa2125d9.zip
Merge branch 'x86-boot-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 boot update from Ingo Molnar: "Two minor changes: fix an atypical binutils combination build bug, and also fix a VRAM size check for simplefb" * 'x86-boot-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/sysfb: Fix check for bad VRAM size x86/boot: Discard .eh_frame sections
Diffstat (limited to 'arch/x86/boot')
-rw-r--r--arch/x86/boot/setup.ld5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/x86/boot/setup.ld b/arch/x86/boot/setup.ld
index 0149e41d42c2..3da1c37c6dd5 100644
--- a/arch/x86/boot/setup.ld
+++ b/arch/x86/boot/setup.ld
@@ -51,7 +51,10 @@ SECTIONS
. = ALIGN(16);
_end = .;
- /DISCARD/ : { *(.note*) }
+ /DISCARD/ : {
+ *(.eh_frame)
+ *(.note*)
+ }
/*
* The ASSERT() sink to . is intentional, for binutils 2.14 compatibility: