Skip to content

Commit f2712ec

Browse files
masahir0yvineetgarc
authored andcommitted
ARC: build: add uImage.lzma to the top-level target
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 <masahiroy@kernel.org> Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
1 parent 9836720 commit f2712ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/arc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ libs-y += arch/arc/lib/ $(LIBGCC)
102102

103103
boot := arch/arc/boot
104104

105-
boot_targets += uImage uImage.bin uImage.gz
105+
boot_targets := uImage uImage.bin uImage.gz uImage.lzma
106106

107107
$(boot_targets): vmlinux
108108
$(Q)$(MAKE) $(build)=$(boot) $(boot)/$@

0 commit comments

Comments
 (0)