1# SPDX-License-Identifier: GPL-2.0 2# 3# arch/cris/boot/Makefile 4# 5 6objcopyflags-$(CONFIG_ETRAX_ARCH_V10) += -R .note -R .comment 7objcopyflags-$(CONFIG_ETRAX_ARCH_V32) += --remove-section=.bss --remove-section=.note.gnu.build-id 8 9OBJCOPYFLAGS = -O binary $(objcopyflags-y) 10 11 12subdir- := compressed rescue 13targets := Image 14 15$(obj)/Image: vmlinux FORCE 16 $(call if_changed,objcopy) 17 @echo ' Kernel: $@ is ready' 18 19$(obj)/compressed/vmlinux: $(obj)/Image FORCE 20 $(Q)$(MAKE) $(build)=$(obj)/compressed $@ 21 $(Q)$(MAKE) $(build)=$(obj)/rescue $(obj)/rescue/rescue.bin 22 23$(obj)/zImage: $(obj)/compressed/vmlinux 24 @cp $< $@ 25 @echo ' Kernel: $@ is ready' 26