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

# 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

print "WARNING: Removal of the $FILESET fileset will make it impossible"
print "         to build a new kernel.  This precludes changing certain"
print "         system parameters and installing products that modify or"
print "         add to the kernel."

exit $WARNING
