#! /sbin/sh
########
# Product: STREAMS
# Fileset: STREAMS-KRN
# checkremove
# @@(#) $Revision: 1.2.98.1 $
#########
#
# (c) Copyright Hewlett-Packard Company, 1994
#
#########

# The global variables SUCCESS, FAILURE, WARNING, EXCLUDE, PATH, ROOT,
# SW_CTL_SCRIPT_NAME, _pf, PRODUCT, and FILESET are all set by control_utils.

UTILS=/usr/lbin/sw/control_utils
if [[ ! -f $UTILS ]]
then
    print "ERROR:   Cannot find the sh functions library $UTILS."
    exit 1
fi

. $UTILS

echo "WARNING: The fileset $FILESET contains kernel functionality."
echo "         Removal of this fileset will make it impossible to build"
echo "         a new kernel with this functionality without reinstalling"
echo "         the fileset."

exit $WARNING
