#!/bin/sh1#2# This file is subject to the terms and conditions of the GNU General Public3# License. See the file "COPYING" in the main directory of this archive4# for more details.5#6# Copyright (C) 1995 by Linus Torvalds7#8# Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin9#10# "make install" script for m68k architecture11#12# Arguments:13# $1 - kernel version14# $2 - kernel image file15# $3 - kernel map file16# $4 - default install path (blank if root directory)1718set -e1920if [ -f $4/vmlinuz ]; then21mv $4/vmlinuz $4/vmlinuz.old22fi2324if [ -f $4/System.map ]; then25mv $4/System.map $4/System.old26fi2728cat $2 > $4/vmlinuz29cp $3 $4/System.map3031sync323334