diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-07-29 16:21:47 +0200 |
---|---|---|
committer | Palmer Dabbelt <palmerdabbelt@google.com> | 2021-09-11 08:08:26 +0200 |
commit | 399c1ec8467c563ae9db4c19a40a9d5e728b1e72 (patch) | |
tree | 7c4eced8f5f1756f86e379433da3e0f49a4dc155 /arch/riscv/boot/Makefile | |
parent | riscv: Improve stack randomisation on RV64 (diff) | |
download | linux-399c1ec8467c563ae9db4c19a40a9d5e728b1e72.tar.xz linux-399c1ec8467c563ae9db4c19a40a9d5e728b1e72.zip |
riscv: move the (z)install rules to arch/riscv/Makefile
Currently, the (z)install targets in arch/riscv/Makefile descend into
arch/riscv/boot/Makefile to invoke the shell script, but there is no
good reason to do so.
arch/riscv/Makefile can run the shell script directly.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
Diffstat (limited to '')
-rw-r--r-- | arch/riscv/boot/Makefile | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/riscv/boot/Makefile b/arch/riscv/boot/Makefile index 6bf299f70c27..becd0621071c 100644 --- a/arch/riscv/boot/Makefile +++ b/arch/riscv/boot/Makefile @@ -58,11 +58,3 @@ $(obj)/Image.lzo: $(obj)/Image FORCE $(obj)/loader.bin: $(obj)/loader FORCE $(call if_changed,objcopy) - -install: - $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \ - $(obj)/Image System.map "$(INSTALL_PATH)" - -zinstall: - $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \ - $(obj)/Image.gz System.map "$(INSTALL_PATH)" |