diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2025-06-08 10:51:34 +0900 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2025-07-03 12:35:11 +0200 |
commit | b5a1f9870f9828bd6625d6c946c66be4983d56f6 (patch) | |
tree | 8f73bb65c37ee00cd283e8d32057e9a30a4c485b | |
parent | e9f4a6b3421e936c3ee9d74710243897d74dbaa2 (diff) | |
download | linux-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/Makefile | 8 |
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) |