install.sh (96916090f488986a4ebb8e9ffa6a3b50881d5ccd) | install.sh (caa27b66bd7188fd063769eaf4b33533ef0709e6) |
---|---|
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# --- 19 unchanged lines hidden (view full) --- 28} 29 30# Make sure the files actually exist 31verify "$2" 32verify "$3" 33 34# User may have a custom install script 35 | 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# --- 19 unchanged lines hidden (view full) --- 28} 29 30# Make sure the files actually exist 31verify "$2" 32verify "$3" 33 34# User may have a custom install script 35 |
36if [ -x ~/bin/${CROSS_COMPILE}installkernel ]; then exec ~/bin/${CROSS_COMPILE}installkernel "$@"; fi 37if [ -x /sbin/${CROSS_COMPILE}installkernel ]; then exec /sbin/${CROSS_COMPILE}installkernel "$@"; fi | 36if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi 37if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi |
38 39# Default install - same as make zlilo 40 41if [ -f $4/vmlinuz ]; then 42 mv $4/vmlinuz $4/vmlinuz.old 43fi 44 45if [ -f $4/System.map ]; then --- 14 unchanged lines hidden --- | 38 39# Default install - same as make zlilo 40 41if [ -f $4/vmlinuz ]; then 42 mv $4/vmlinuz $4/vmlinuz.old 43fi 44 45if [ -f $4/System.map ]; then --- 14 unchanged lines hidden --- |