#!/bin/sh1#2# arch/parisc/install.sh, derived from arch/i386/boot/install.sh3#4# This file is subject to the terms and conditions of the GNU General Public5# License. See the file "COPYING" in the main directory of this archive6# for more details.7#8# Copyright (C) 1995 by Linus Torvalds9#10# Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin11#12# "make install" script for i386 architecture13#14# Arguments:15# $1 - kernel version16# $2 - kernel image file17# $3 - kernel map file18# $4 - default install path (blank if root directory)19#2021# User may have a custom install script2223if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi24if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi2526# Default install2728if [ -f $4/vmlinux ]; then29mv $4/vmlinux $4/vmlinux.old30fi3132if [ -f $4/System.map ]; then33mv $4/System.map $4/System.old34fi3536cat $2 > $4/vmlinux37cp $3 $4/System.map383940