Merge tag 'input-for-v5.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / arch / powerpc / boot / install.sh
CommitLineData
1da177e4
LT
1#!/bin/sh
2#
1da177e4
LT
3# This file is subject to the terms and conditions of the GNU General Public
4# License. See the file "COPYING" in the main directory of this archive
5# for more details.
6#
7# Copyright (C) 1995 by Linus Torvalds
8#
9# Blatantly stolen from in arch/i386/boot/install.sh by Dave Hansen
10#
11# "make install" script for ppc64 architecture
12#
13# Arguments:
14# $1 - kernel version
15# $2 - kernel image file
16# $3 - kernel map file
17# $4 - default install path (blank if root directory)
1da177e4 18
529273c1
GL
19set -e
20
1da177e4 21# this should work for both the pSeries zImage and the iSeries vmlinux.sm
18c5332b 22image_name=`basename $2`
1da177e4
LT
23
24if [ -f $4/$image_name ]; then
25 mv $4/$image_name $4/$image_name.old
26fi
27
28if [ -f $4/System.map ]; then
29 mv $4/System.map $4/System.old
30fi
31
32cat $2 > $4/$image_name
33cp $3 $4/System.map