Cross Reference: /illumos-gate/usr/src/pkgdefs/SUNWllcr/postinstall
postinstall revision 7c478bd95313f5f23a4c958a745db2134aa03244
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# CDDL HEADER START
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# The contents of this file are subject to the terms of the
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# Common Development and Distribution License, Version 1.0 only
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# (the "License"). You may not use this file except in compliance
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# with the License.
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# or http://www.opensolaris.org/os/licensing.
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# See the License for the specific language governing permissions
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# and limitations under the License.
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# When distributing Covered Code, include this CDDL HEADER in each
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# If applicable, add the following below this CDDL HEADER, with the
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# fields enclosed by brackets "[]" replaced with your own identifying
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# information: Portions Copyright [yyyy] [name of copyright owner]
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# CDDL HEADER END
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# Copyright (c) 1998-1999 by Sun Microsystems, Inc.
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# All rights reserved.
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#ident "%Z%%M% %I% %E% SMI"
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch
2cbbe9b4829adb184c83dbf780316f4144559054Stephan BoschDRVPERM='* 0666 root sys'
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Boschadd_driver(){
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch driver=$1
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch grep "^${driver} " $BASEDIR/etc/name_to_major > /dev/null 2>&1
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch if [ $? != 0 ]; then
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch $ADD_DRV -m "${DRVPERM}" $driver || exit 1
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch fi
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch}
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Boschif [ "${BASEDIR:=/}" = "/" ]
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Boschthen
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch ADD_DRV="add_drv"
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Boschelse
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch ADD_DRV="add_drv -b ${BASEDIR}"
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Boschfi
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Boschadd_driver llc2
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Boschexit 0
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch