Skip to content

Commit

Permalink
ARC: build: add uImage.lzma to the top-level target
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Vineet Gupta <[email protected]>
  • Loading branch information
masahir0y authored and vineetgarc committed Dec 2, 2020
1 parent 9836720 commit f2712ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)/$@
Expand Down

0 comments on commit f2712ec

Please sign in to comment.