From: Masahiro Yamada Date: Sun, 8 Jun 2025 01:51:34 +0000 (+0900) Subject: mips: boot: use 'targets' instead of extra-y in Makefile X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=b5a1f9870f9828bd6625d6c946c66be4983d56f6;p=users%2Fjedix%2Flinux-maple.git mips: boot: use 'targets' instead of extra-y in Makefile vmlinux.bin.* files are built as prerequisites of other objects. There is no need to use extra-y, which is planned for deprecation. Signed-off-by: Masahiro Yamada Signed-off-by: Thomas Bogendoerfer --- diff --git a/arch/mips/boot/Makefile b/arch/mips/boot/Makefile index 196c44fa72d9..8473c4671702 100644 --- a/arch/mips/boot/Makefile +++ b/arch/mips/boot/Makefile @@ -54,10 +54,10 @@ UIMAGE_ENTRYADDR = $(VMLINUX_ENTRY_ADDRESS) # Compressed vmlinux images # -extra-y += vmlinux.bin.bz2 -extra-y += vmlinux.bin.gz -extra-y += vmlinux.bin.lzma -extra-y += vmlinux.bin.lzo +targets += vmlinux.bin.bz2 +targets += vmlinux.bin.gz +targets += vmlinux.bin.lzma +targets += vmlinux.bin.lzo $(obj)/vmlinux.bin.bz2: $(obj)/vmlinux.bin FORCE $(call if_changed,bzip2)