mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-18 14:25:25 +00:00
269d79fb30
Rather than replacing the versionless vmlinux and System.map files, copy to files with the version info appended. Additionally, since executing the script is a last resort option, inform the user about the missing `installkernel` command and the location of the installation. This work is adapted from `arch/s390/boot/install.sh`, and also matches the behaviour of arm, arm64 and riscv. Signed-off-by: Nick Child <nnac123@linux.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20230314164442.124929-1-nnac123@linux.ibm.com
38 lines
919 B
Bash
Executable File
38 lines
919 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU General Public
|
|
# License. See the file "COPYING" in the main directory of this archive
|
|
# for more details.
|
|
#
|
|
# Copyright (C) 1995 by Linus Torvalds
|
|
#
|
|
# Blatantly stolen from in arch/i386/boot/install.sh by Dave Hansen
|
|
#
|
|
# "make install" script for ppc64 architecture
|
|
#
|
|
# Arguments:
|
|
# $1 - kernel version
|
|
# $2 - kernel image file
|
|
# $3 - kernel map file
|
|
# $4 - default install path (blank if root directory)
|
|
|
|
set -e
|
|
|
|
# this should work for both the pSeries zImage and the iSeries vmlinux.sm
|
|
image_name=`basename $2`
|
|
|
|
|
|
echo "Warning: '${INSTALLKERNEL}' command not available... Copying" \
|
|
"directly to $4/$image_name-$1" >&2
|
|
|
|
if [ -f $4/$image_name-$1 ]; then
|
|
mv $4/$image_name-$1 $4/$image_name-$1.old
|
|
fi
|
|
|
|
if [ -f $4/System.map-$1 ]; then
|
|
mv $4/System.map-$1 $4/System-$1.old
|
|
fi
|
|
|
|
cat $2 > $4/$image_name-$1
|
|
cp $3 $4/System.map-$1
|