3 # arch/arm64/boot/install.sh
5 # This file is subject to the terms and conditions of the GNU General Public
6 # License. See the file "COPYING" in the main directory of this archive
9 # Copyright (C) 1995 by Linus Torvalds
11 # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin
12 # Adapted from code in arch/i386/boot/install.sh by Russell King
14 # "make install" script for the AArch64 Linux port
18 # $2 - kernel image file
19 # $3 - kernel map file
20 # $4 - default install path (blank if root directory)
23 # User may have a custom install script
24 if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi
25 if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi
27 if [ "$(basename $2)" = "Image.gz" ]; then
29 echo "Installing compressed kernel"
33 echo "Installing normal kernel"
37 if [ -f $4/$base-$1 ]; then
38 mv $4/$base-$1 $4/$base-$1.old
42 # Install system map file
43 if [ -f $4/System.map-$1 ]; then
44 mv $4/System.map-$1 $4/System.map-$1.old
46 cp $3 $4/System.map-$1