summaryrefslogtreecommitdiffstats
path: root/arch/xtensa/boot
diff options
context:
space:
mode:
authorMax Filippov2018-10-30 02:30:13 +0100
committerMax Filippov2018-10-30 03:02:08 +0100
commit4119ba211bc4f1bf638f41e50b7a0f329f58aa16 (patch)
tree610206a3dc7dea8cfb074e9849b2c257c23eaf9a /arch/xtensa/boot
parentxtensa: remove ZONE_DMA (diff)
downloadkernel-qcow2-linux-4119ba211bc4f1bf638f41e50b7a0f329f58aa16.tar.gz
kernel-qcow2-linux-4119ba211bc4f1bf638f41e50b7a0f329f58aa16.tar.xz
kernel-qcow2-linux-4119ba211bc4f1bf638f41e50b7a0f329f58aa16.zip
xtensa: add NOTES section to the linker script
This section collects all source .note.* sections together in the vmlinux image. Without it .note.Linux section may be placed at address 0, while the rest of the kernel is at its normal address, resulting in a huge vmlinux.bin image that may not be linked into the xtensa Image.elf. Cc: stable@vger.kernel.org Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'arch/xtensa/boot')
-rw-r--r--arch/xtensa/boot/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/xtensa/boot/Makefile b/arch/xtensa/boot/Makefile
index dc9e0ba7122c..294846117fc2 100644
--- a/arch/xtensa/boot/Makefile
+++ b/arch/xtensa/boot/Makefile
@@ -33,7 +33,7 @@ uImage: $(obj)/uImage
boot-elf boot-redboot: $(addprefix $(obj)/,$(subdir-y))
$(Q)$(MAKE) $(build)=$(obj)/$@ $(MAKECMDGOALS)
-OBJCOPYFLAGS = --strip-all -R .comment -R .note.gnu.build-id -O binary
+OBJCOPYFLAGS = --strip-all -R .comment -R .notes -O binary
vmlinux.bin: vmlinux FORCE
$(call if_changed,objcopy)