postinstall revision 830d82f7f87041e48127cac2e92b5cb2d878202e
#
# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# ident "%Z%%M% %I% %E% SMI"
#
# Function: check_add_drv()
#
# This function will check if the module has an entry in etc/name_to_major
# If not simply calls add_drv with the arguments given. If there is
# such an entry in name_to_major file, it adds entries in driver_aliases
# driver_classes and minor_perm if necessary.
# The syntax of this function is the same as add_drv.
{
then
BASEDIR=/
fi
alias=""
class=""
OPTIND=1
cmd="add_drv"
while getopts i:b:m:c:N opt
do
N ) NO_CMD=1;;
i ) ADD_ALIAS=1
alias=$OPTARG
;;
m ) ADD_MINOR=1
;;
c) ADD_CLASS=1
;;
;;
\?) echo "check_add_drv can not handle this option"
return
;;
esac
done
drvname=$1
then
eval $cmd
else
# entry already in name_to_major, add alias, class, minorperm
# if necessary
if [ $ADD_ALIAS = 1 ]
then
do
if [ $? -ne 0 ]
then
fi
done
fi
if [ $ADD_CLASS = 1 ]
then
if [ $? -ne 0 ]
then
fi
fi
if [ $ADD_MINOR = 1 ]
then
if [ $? -ne 0 ]
then
echo $minorentry >> $BASEDIR/etc/minor_perm
fi
fi
fi
}