xref: /linux/arch/arm/boot/install.sh (revision 34e3c4500cdc06094b37a41b622598098308ba8f)
1#!/bin/sh
2#
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# Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin
10# Adapted from code in arch/i386/boot/install.sh by Russell King
11#
12# "make install" script for arm architecture
13#
14# Arguments:
15#   $1 - kernel version
16#   $2 - kernel image file
17#   $3 - kernel map file
18#   $4 - default install path (blank if root directory)
19
20set -e
21
22if [ "$(basename $2)" = "zImage" ]; then
23# Compressed install
24  echo "Installing compressed kernel"
25  base=vmlinuz
26else
27# Normal install
28  echo "Installing normal kernel"
29  base=vmlinux
30fi
31
32if [ -f $4/$base-$1 ]; then
33  mv $4/$base-$1 $4/$base-$1.old
34fi
35cat $2 > $4/$base-$1
36
37# Install system map file
38if [ -f $4/System.map-$1 ]; then
39  mv $4/System.map-$1 $4/System.map-$1.old
40fi
41cp $3 $4/System.map-$1
42
43if [ -x /sbin/loadmap ]; then
44  /sbin/loadmap
45else
46  echo "You have to install it yourself"
47fi
48