blob: bed227f267ae52aab3a02ec5e8a0f01767896a10 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#!/bin/sh
Greg Kroah-Hartman0b732142017-11-24 15:00:38 +01002# SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#
4# arch/s390x/boot/install.sh
5#
Linus Torvalds1da177e2005-04-16 15:20:36 -07006# Copyright (C) 1995 by Linus Torvalds
7#
8# Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin
9#
10# "make install" script for s390 architecture
11#
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)
17#
18
19# User may have a custom install script
20
Sam Ravnborgcaa27b62009-07-20 21:37:11 +020021if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi
22if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24# Default install - same as make zlilo
25
26if [ -f $4/vmlinuz ]; then
27 mv $4/vmlinuz $4/vmlinuz.old
28fi
29
30if [ -f $4/System.map ]; then
31 mv $4/System.map $4/System.old
32fi
33
34cat $2 > $4/vmlinuz
35cp $3 $4/System.map