clk: samsung: Add bus clock for GPU/G3D on Exynos4412
[linux/fpc-iii.git] / arch / s390 / boot / install.sh
blobbed227f267ae52aab3a02ec5e8a0f01767896a10
1 #!/bin/sh
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
12 # Arguments:
13 # $1 - kernel version
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 # Default install - same as make zlilo
26 if [ -f $4/vmlinuz ]; then
27 mv $4/vmlinuz $4/vmlinuz.old
30 if [ -f $4/System.map ]; then
31 mv $4/System.map $4/System.old
34 cat $2 > $4/vmlinuz
35 cp $3 $4/System.map