Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/powerpc/boot/install.sh
26424 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
# 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)
18
19
set -e
20
21
# this should work for both the pSeries zImage and the iSeries vmlinux.sm
22
image_name=$(basename "$2")
23
24
25
echo "Warning: '${INSTALLKERNEL}' command not available... Copying" \
26
"directly to $4/$image_name-$1" >&2
27
28
if [ -f "$4"/"$image_name"-"$1" ]; then
29
mv "$4"/"$image_name"-"$1" "$4"/"$image_name"-"$1".old
30
fi
31
32
if [ -f "$4"/System.map-"$1" ]; then
33
mv "$4"/System.map-"$1" "$4"/System-"$1".old
34
fi
35
36
cat "$2" > "$4"/"$image_name"-"$1"
37
cp "$3" "$4"/System.map-"$1"
38
39