2 # SPDX-License-Identifier: GPL-2.0
4 # arch/s390x/boot/install.sh
6 # Copyright (C) 1995 by Linus Torvalds
8 # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin
10 # "make install" script for s390 architecture
14 # $2 - kernel image file
15 # $3 - kernel map file
16 # $4 - default install path (blank if root directory)
19 # User may have a custom install script
21 if [ -x ~
/bin
/${INSTALLKERNEL} ]; then exec ~
/bin
/${INSTALLKERNEL} "$@"; fi
22 if [ -x /sbin
/${INSTALLKERNEL} ]; then exec /sbin
/${INSTALLKERNEL} "$@"; fi
24 echo "Warning: '${INSTALLKERNEL}' command not available - additional " \
25 "bootloader config required" >&2
26 if [ -f $4/vmlinuz-
$1 ]; then mv $4/vmlinuz-
$1 $4/vmlinuz-
$1.old
; fi
27 if [ -f $4/System.map-
$1 ]; then mv $4/System.map-
$1 $4/System.map-
$1.old
; fi
29 cat $2 > $4/vmlinuz-
$1
30 cp $3 $4/System.map-
$1