diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-07-29 17:07:06 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2021-09-22 03:26:24 +0300 |
commit | 89b4db61c76197b899f9dc3dc06ea7c3a60729b8 (patch) | |
tree | 64cb5df4849c2f8e90a6ed6691982549f9ff593b /arch/nios2/boot | |
parent | e4e737bb5c170df6135a127739a9e6148ee3da82 (diff) | |
download | linux-89b4db61c76197b899f9dc3dc06ea7c3a60729b8.tar.xz |
nios2: move the install rule to arch/nios2/Makefile
Currently, the install target in arch/nios2/Makefile descends into
arch/nios2/boot/Makefile to invoke the shell script, but it is no
good reason to do so.
arch/nios2/Makefile can run the shell script directly.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'arch/nios2/boot')
-rw-r--r-- | arch/nios2/boot/Makefile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/nios2/boot/Makefile b/arch/nios2/boot/Makefile index 37dfc7e584bc..8c3ad76602f3 100644 --- a/arch/nios2/boot/Makefile +++ b/arch/nios2/boot/Makefile @@ -30,6 +30,3 @@ $(obj)/zImage: $(obj)/compressed/vmlinux FORCE $(obj)/compressed/vmlinux: $(obj)/vmlinux.gz FORCE $(Q)$(MAKE) $(build)=$(obj)/compressed $@ - -install: - sh $(srctree)/$(src)/install.sh $(KERNELRELEASE) $(BOOTIMAGE) System.map "$(INSTALL_PATH)" |