diff options
Diffstat (limited to 'arch/m68k/install.sh')
| -rwxr-xr-x[-rw-r--r--] | arch/m68k/install.sh | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/arch/m68k/install.sh b/arch/m68k/install.sh index 57d640d4382c..b6829b3942b3 100644..100755 --- a/arch/m68k/install.sh +++ b/arch/m68k/install.sh @@ -15,28 +15,8 @@ # $2 - kernel image file # $3 - kernel map file # $4 - default install path (blank if root directory) -# - -verify () { - if [ ! -f "$1" ]; then - echo "" 1>&2 - echo " *** Missing file: $1" 1>&2 - echo ' *** You need to run "make" before "make install".' 1>&2 - echo "" 1>&2 - exit 1 - fi -} - -# Make sure the files actually exist -verify "$2" -verify "$3" - -# User may have a custom install script - -if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi -if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi -# Default install - same as make zlilo +set -e if [ -f $4/vmlinuz ]; then mv $4/vmlinuz $4/vmlinuz.old |
