diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-02-19 07:05:50 +0100 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2016-02-19 11:33:35 +0100 |
commit | 8684fa3e7a9ee629ca60bd811d1597646451f918 (patch) | |
tree | fbdd946fb29c3ab664166d957f62be2fe1569b7d /arch/arm64/boot/Makefile | |
parent | arm64: dma-mapping: fix handling of devices registered before arch_initcall (diff) | |
download | linux-8684fa3e7a9ee629ca60bd811d1597646451f918.tar.xz linux-8684fa3e7a9ee629ca60bd811d1597646451f918.zip |
arm64: kbuild: make "make install" not depend on vmlinux
For the same reason as commit 19514fc665ff ("arm, kbuild: make "make
install" not depend on vmlinux"), the install targets should never
trigger the rebuild of the kernel.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/boot/Makefile')
-rw-r--r-- | arch/arm64/boot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/boot/Makefile b/arch/arm64/boot/Makefile index abcbba2f01ba..305c552b5ec1 100644 --- a/arch/arm64/boot/Makefile +++ b/arch/arm64/boot/Makefile @@ -34,10 +34,10 @@ $(obj)/Image.lzma: $(obj)/Image FORCE $(obj)/Image.lzo: $(obj)/Image FORCE $(call if_changed,lzo) -install: $(obj)/Image +install: $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \ $(obj)/Image System.map "$(INSTALL_PATH)" -zinstall: $(obj)/Image.gz +zinstall: $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \ $(obj)/Image.gz System.map "$(INSTALL_PATH)" |