diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-07-29 23:23:38 +0900 |
---|---|---|
committer | Heiko Carstens <hca@linux.ibm.com> | 2021-07-30 17:09:36 +0200 |
commit | d80d3ea64e5fa2ab20b3774ea0d871484877422b (patch) | |
tree | 40aa51b8d7b02d7717f0150f0227ded3a7d48fc3 /arch/s390/boot | |
parent | e37b3dd063a1a68e28a7cfaf77c84c472112e330 (diff) | |
download | linux-d80d3ea64e5fa2ab20b3774ea0d871484877422b.tar.bz2 |
s390: move the install rule to arch/s390/Makefile
Currently, the install target in arch/s390/Makefile descends into
arch/s390/boot/Makefile to invoke the shell script, but there is no
good reason to do so.
arch/s390/Makefile can run the shell script directly.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Link: https://lore.kernel.org/r/20210729142338.446002-1-masahiroy@kernel.org
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Diffstat (limited to 'arch/s390/boot')
-rw-r--r-- | arch/s390/boot/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/s390/boot/Makefile b/arch/s390/boot/Makefile index ed41a1a17490..0ba646899131 100644 --- a/arch/s390/boot/Makefile +++ b/arch/s390/boot/Makefile @@ -70,7 +70,3 @@ $(obj)/compressed/vmlinux: $(obj)/startup.a FORCE $(obj)/startup.a: $(OBJECTS) FORCE $(call if_changed,ar) - -install: - sh -x $(srctree)/$(obj)/install.sh $(KERNELRELEASE) $(obj)/bzImage \ - System.map "$(INSTALL_PATH)" |