#!/bin/sh
#
#
# Copyright (c) 1998-2000 by Sun Microsystems, Inc.
# All rights reserved.
#
#ident	"@(#)postinstall	1.1	00/07/20 SMI"
#

grep -w "bofi" ${BASEDIR}/etc/name_to_major > /dev/null 2>&1
if [ $? != 0 ] ; then
/usr/sbin/add_drv -b "$BASEDIR" -m '* 0600 bin bin' bofi
	if [ $? -ne 0 ]
	then
       		 exit 1
	fi
fi
exit 0
