#!/bin/sh
#
# Copyright 1999-2002 by Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# ident "@(#)postpatch 1.2     02/11/26 SMI"
#
# Only run this script if this is a Netra ct machine.

if [ `uname -i` != "SUNW,UltraSPARC-IIi-Netract" ] 
then
	exit 0
fi

# Echo the special Install Instructions
echo " "
echo "*********** SPECIAL INSTALLATION INSTRUCTIONS ***********"
echo "To complete the installation of this patch,"
echo "the Update script must be run to upgrade the"
echo "system Open Boot PROM (OBP) after you create"
echo "a backup of your current OBP NVRAM settings"
echo " "
echo "example# /usr/sbin/eeprom > /nvram.settings"
echo "example# cd /usr/platform/SUNW,UltraSPARC-IIi-Netract/OBP"
echo "example# ./Update.to.3.14.7.ct"
echo " "
echo "Please see the patch README for more information."
echo ""


