#!/sbin/sh
#
# Copyright 2003 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.

#  Remove clone device after removing the BGE driver the system

DRV="bge"                                      # driver being installed
CLONEDEV="devices/pseudo/clone@0:$DRV"
if [ -c $ROOTDIR/$CLONEDEV ]
then
  rm -rf $ROOTDIR/$CLONEDEV
fi
