diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-07-29 16:19:35 +0200 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2021-08-04 02:53:38 +0200 |
commit | 156ca4e650bfb9a4259b427069caa11b5a4df3d4 (patch) | |
tree | 69a0972cc8a914a84fcafa3d0365eeabe4413d02 /arch/powerpc/boot/install.sh | |
parent | cpuidle: pseries: Mark pseries_idle_proble() as __init (diff) | |
download | linux-156ca4e650bfb9a4259b427069caa11b5a4df3d4.tar.xz linux-156ca4e650bfb9a4259b427069caa11b5a4df3d4.zip |
powerpc: remove unused zInstall target from arch/powerpc/boot/Makefile
Commit c913e5f95e54 ("powerpc/boot: Don't install zImage.* from make
install") added the zInstall target to arch/powerpc/boot/Makefile,
but you cannot use it since the corresponding hook is missing in
arch/powerpc/Makefile.
It has never worked since its addition. Nobody has complained about
it for 7 years, which means this code was unneeded.
With this removal, the install.sh will be passed in with 4 parameters.
Simplify the shell script.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20210729141937.445051-1-masahiroy@kernel.org
Diffstat (limited to 'arch/powerpc/boot/install.sh')
-rw-r--r-- | arch/powerpc/boot/install.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/powerpc/boot/install.sh b/arch/powerpc/boot/install.sh index b6a256bc96ee..658c93ca7437 100644 --- a/arch/powerpc/boot/install.sh +++ b/arch/powerpc/boot/install.sh @@ -15,7 +15,6 @@ # $2 - kernel image file # $3 - kernel map file # $4 - default install path (blank if root directory) -# $5 and more - kernel boot files; zImage*, uImage, cuImage.*, etc. # # Bail with error code if anything goes wrong @@ -41,15 +40,3 @@ fi cat $2 > $4/$image_name cp $3 $4/System.map - -# Copy all the bootable image files -path=$4 -shift 4 -while [ $# -ne 0 ]; do - image_name=`basename $1` - if [ -f $path/$image_name ]; then - mv $path/$image_name $path/$image_name.old - fi - cat $1 > $path/$image_name - shift -done; |