#!/bin/sh
################################################################
#       Copyright (C) 1995 Interphase Corporation
#
#       Project:        4811 EFDDI HP-UX Driver
#       File:		configure
#
#       $Author: dhollist $
#       $Date: 1995/04/07 21:16:26 $
#       $Source: /proj7/efddi/drivers/seahawk/hpux/hpux.10.0/dhollist/inst_scripts/RCS/configure,v $
#       $Revision: 1.1 $
#       $Locker: dhollist $
#
################################################################

{
PATH=/usr/bin:/usr/sbin

OSTYPE=`uname -m`
case "$OSTYPE" in

    9000/7* | 9000/8*)

# Add driver config for nettl
    nettlconf -id 39 -name SEAH_FDDI -class 12 -kernel -lib libfddifmt.sl -msg seah_fddi -fmtfn subsys_FDDI_format -group SEAH_FDDI

    ;;

    *)	echo "Model $OSTYPE not supported at this time"
        exit1
        ;;

esac
exit 0
}
