#!/bin/sh
#
# installfvp
#
# Copyright (c) 1988-1993 Frame Technology Corp. All rights reserved.
# $Id: installfvp,v 1.1 1994/02/11 01:39:59 lss Exp $
#
# This script execs the appropriate installfvp script 
# for the current platform.

scriptname=$0
vendor=unknown
FMARCH=`.install/fvpfmarch`
export FMARCH
# simplify $FMARCH to show vendor name only
case $FMARCH in
    apollo*)
      vendor=apollo;;
    sun*)
      vendor=sun;;
    hp*)
      vendor=hp;;
    dec*)
      vendor=dec;;
    ibm*)
      vendor=ibm;;
    sony*)
      vendor=sony;;
    sgi*)
      vendor=sgi;;
    moto*)
      vendor=moto;;
    # fall thru, $FMARCH may be incorrect
esac

[ "$vendor" = "unknown" ] && {
   echo $scriptname: Could not determine Vendor name of this platform.
   echo $scriptname: installation aborting.
   exit 1
}

exec .install/installfvp.$vendor
