]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - arch/s390/boot/install.sh
UBUNTU: Ubuntu-5.11.0-22.23
[mirror_ubuntu-hirsute-kernel.git] / arch / s390 / boot / install.sh
CommitLineData
1da177e4 1#!/bin/sh
0b73214f 2# SPDX-License-Identifier: GPL-2.0
1da177e4
LT
3#
4# arch/s390x/boot/install.sh
5#
1da177e4
LT
6# 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
caa27b66
SR
21if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi
22if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi
1da177e4 23
b059a39c
SR
24echo "Warning: '${INSTALLKERNEL}' command not available - additional " \
25 "bootloader config required" >&2
26if [ -f $4/vmlinuz-$1 ]; then mv $4/vmlinuz-$1 $4/vmlinuz-$1.old; fi
27if [ -f $4/System.map-$1 ]; then mv $4/System.map-$1 $4/System.map-$1.old; fi
1da177e4 28
b059a39c
SR
29cat $2 > $4/vmlinuz-$1
30cp $3 $4/System.map-$1