From: Masahiro Yamada Date: Sat, 21 Nov 2020 19:36:53 +0000 (+0900) Subject: ARC: build: add uImage.lzma to the top-level target X-Git-Tag: v5.10.17~860 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e1c4b5ff9655d643982a92fdf0d0ef38cf6c7875;p=platform%2Fkernel%2Flinux-rpi.git ARC: build: add uImage.lzma to the top-level target [ Upstream commit f2712ec76a5433e5ec9def2bd52a95df1f96d050 ] arch/arc/boot/Makefile supports uImage.lzma, but you cannot do 'make uImage.lzma' because the corresponding target is missing in arch/arc/Makefile. Add it. I also changed the assignment operator '+=' to ':=' since this is the only place where we expect this variable to be set. Signed-off-by: Masahiro Yamada Signed-off-by: Vineet Gupta Signed-off-by: Sasha Levin --- diff --git a/arch/arc/Makefile b/arch/arc/Makefile index acf9942..61a4112 100644 --- a/arch/arc/Makefile +++ b/arch/arc/Makefile @@ -102,7 +102,7 @@ libs-y += arch/arc/lib/ $(LIBGCC) boot := arch/arc/boot -boot_targets += uImage uImage.bin uImage.gz +boot_targets := uImage uImage.bin uImage.gz uImage.lzma $(boot_targets): vmlinux $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@