avr32: remove .note.gnu.build-id section when making vmlinux.bin

This patch will remove the section .note.gnu.build-id added in binutils
2.18 from the vmlinux.bin binary. Not removing this section results in a
huge multiple gigabyte binary and likewize large uImage.

Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>

authored by Hans-Christian Egtvedt and committed by Haavard Skinnemoen c1892cb8 10546263

+1 -1
+1 -1
arch/avr32/boot/images/Makefile
··· 10 10 11 11 extra-y := vmlinux.bin vmlinux.gz 12 12 13 - OBJCOPYFLAGS_vmlinux.bin := -O binary 13 + OBJCOPYFLAGS_vmlinux.bin := -O binary -R .note.gnu.build-id 14 14 $(obj)/vmlinux.bin: vmlinux FORCE 15 15 $(call if_changed,objcopy) 16 16