]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
mips: boot: use 'targets' instead of extra-y in Makefile
authorMasahiro Yamada <masahiroy@kernel.org>
Sun, 8 Jun 2025 01:51:34 +0000 (10:51 +0900)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Thu, 3 Jul 2025 10:35:11 +0000 (12:35 +0200)
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>
arch/mips/boot/Makefile

index 196c44fa72d90c4fb1eac7f92e4bd7e8221c991f..8473c46717029dae0c729d5186fbf3d73e7ad729 100644 (file)
@@ -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)