postinstall revision 7c478bd95313f5f23a4c958a745db2134aa03244
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License"). You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2005 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
}
if [ ${ARCH} = "i386" ]
then
check_add_drv -i '"SUNW,bge" "pci108e,1647" "pci108e,1648" "pci108e,16a7" "pci108e,16a8" "pci14e4,1644" "pci14e4,1645" "pci14e4,1647" "pci14e4,16a7" "pci14e4,16c7" "pci14e4,1648" "pci14e4,16a8" "pci14e4,1649" "pci14e4,1653" "pci14e4,165d" "pci14e4,165e" "pci14e4,1696" "pci14e4,169c" "pci14e4,1677" "pci14e4,167d" "pci14e4,1659"' -b "$BASEDIR" bge
else if [ ${ARCH} = "sparc" ]
then
check_add_drv -i '"SUNW,bge" "pci108e,1647" "pci108e,1648" "pci108e,16a7" "pci108e,16a8" "pci14e4,1647" "pci14e4,1645" "pciex14e4,1659" "pci14e4,1668"' -b "$BASEDIR" bge
fi
fi