aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
authorMasahiro Yamada <masahiroy@kernel.org>2025-06-08 10:51:34 +0900
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>2025-07-02 14:22:01 +0200
commite8d96b18c45f46468b68283a20d1851fa726d51f (patch)
tree159d5a632b2e68474454100931e4299edffdcb9d
parentfec183186cb7060f8a5ccdfca7e048eac099c81e (diff)
downloadlinux-mips-next.tar.gz
mips: boot: use 'targets' instead of extra-y in Makefilemips-next
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 <masahiroy@kernel.org> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
-rw-r--r--arch/mips/boot/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/boot/Makefile b/arch/mips/boot/Makefile
index 196c44fa72d90c..8473c46717029d 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)