Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/arm/boot/install.sh
29266 views
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
20
set -e
21
22
if [ "$(basename $2)" = "zImage" ]; then
23
# Compressed install
24
echo "Installing compressed kernel"
25
base=vmlinuz
26
else
27
# Normal install
28
echo "Installing normal kernel"
29
base=vmlinux
30
fi
31
32
if [ -f $4/$base-$1 ]; then
33
mv $4/$base-$1 $4/$base-$1.old
34
fi
35
cat $2 > $4/$base-$1
36
37
# Install system map file
38
if [ -f $4/System.map-$1 ]; then
39
mv $4/System.map-$1 $4/System.map-$1.old
40
fi
41
cp $3 $4/System.map-$1
42
43
if [ -x /sbin/loadmap ]; then
44
/sbin/loadmap
45
else
46
echo "You have to install it yourself"
47
fi
48
49