postinstall revision 7c478bd95313f5f23a4c958a745db2134aa03244
da97433d5cd26e422a370d186f98659383c06721csovant#! /usr/bin/sh
da97433d5cd26e422a370d186f98659383c06721csovant#
da97433d5cd26e422a370d186f98659383c06721csovant# CDDL HEADER START
da97433d5cd26e422a370d186f98659383c06721csovant#
da97433d5cd26e422a370d186f98659383c06721csovant# The contents of this file are subject to the terms of the
da97433d5cd26e422a370d186f98659383c06721csovant# Common Development and Distribution License, Version 1.0 only
da97433d5cd26e422a370d186f98659383c06721csovant# (the "License"). You may not use this file except in compliance
da97433d5cd26e422a370d186f98659383c06721csovant# with the License.
da97433d5cd26e422a370d186f98659383c06721csovant#
da97433d5cd26e422a370d186f98659383c06721csovant# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
da97433d5cd26e422a370d186f98659383c06721csovant# or http://www.opensolaris.org/os/licensing.
da97433d5cd26e422a370d186f98659383c06721csovant# See the License for the specific language governing permissions
da97433d5cd26e422a370d186f98659383c06721csovant# and limitations under the License.
da97433d5cd26e422a370d186f98659383c06721csovant#
da97433d5cd26e422a370d186f98659383c06721csovant# When distributing Covered Code, include this CDDL HEADER in each
da97433d5cd26e422a370d186f98659383c06721csovant# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
da97433d5cd26e422a370d186f98659383c06721csovant# If applicable, add the following below this CDDL HEADER, with the
da97433d5cd26e422a370d186f98659383c06721csovant# fields enclosed by brackets "[]" replaced with your own identifying
da97433d5cd26e422a370d186f98659383c06721csovant# information: Portions Copyright [yyyy] [name of copyright owner]
da97433d5cd26e422a370d186f98659383c06721csovant#
da97433d5cd26e422a370d186f98659383c06721csovant# CDDL HEADER END
da97433d5cd26e422a370d186f98659383c06721csovant#
da97433d5cd26e422a370d186f98659383c06721csovant#
da97433d5cd26e422a370d186f98659383c06721csovant# ident "%Z%%M% %I% %E% SMI"
da97433d5cd26e422a370d186f98659383c06721csovant#
2b68af05b4308b32506f1d68f6357cdc458869d7ludovicp# Copyright 2003 Sun Microsystems, Inc. All rights reserved.
da97433d5cd26e422a370d186f98659383c06721csovant# Use is subject to license terms.
da97433d5cd26e422a370d186f98659383c06721csovant#
da97433d5cd26e422a370d186f98659383c06721csovant
da97433d5cd26e422a370d186f98659383c06721csovant#
da97433d5cd26e422a370d186f98659383c06721csovant#/dev/power has been replaced by /dev/power_button
da97433d5cd26e422a370d186f98659383c06721csovant#
da97433d5cd26e422a370d186f98659383c06721csovantif [ -h $BASEDIR/dev/power ]; then
da97433d5cd26e422a370d186f98659383c06721csovant rm -f $BASEDIR/dev/power
da97433d5cd26e422a370d186f98659383c06721csovantfi
da97433d5cd26e422a370d186f98659383c06721csovant
da97433d5cd26e422a370d186f98659383c06721csovant#
da97433d5cd26e422a370d186f98659383c06721csovant#/dev/mc has been replaced by /dev/mc/mc[count]
da97433d5cd26e422a370d186f98659383c06721csovant#
da97433d5cd26e422a370d186f98659383c06721csovantif [ -h $BASEDIR/dev/mc ]; then
da97433d5cd26e422a370d186f98659383c06721csovant rm -f $BASEDIR/dev/mc
da97433d5cd26e422a370d186f98659383c06721csovantfi
da97433d5cd26e422a370d186f98659383c06721csovant
da97433d5cd26e422a370d186f98659383c06721csovantif [ -f $BASEDIR/platform/sun4u/kernel/drv/mc-us3.conf ]; then
da97433d5cd26e422a370d186f98659383c06721csovant rm -f $BASEDIR/platform/sun4u/kernel/drv/mc-us3.conf
da97433d5cd26e422a370d186f98659383c06721csovantfi
da97433d5cd26e422a370d186f98659383c06721csovant
da97433d5cd26e422a370d186f98659383c06721csovantexit 0
da97433d5cd26e422a370d186f98659383c06721csovant