#!/sbin/sh
#
# Copyright (c) 1999 by Sun Microsystems, Inc.
# All rights reserved.
#
#ident	"@(#)tsquantum	1.4	99/03/19 SMI"

# Install a TS dispatch table with larger time quanta on
# UE10000 platforms.

starfire="SUNW,Ultra-Enterprise-10000"
if [ ${_INIT_UTS_PLATFORM:-`/sbin/uname -i`} = "${starfire}" -a \
    -r /usr/lib/class/TS/TSbigquanta ]; then
	# install new TS table
	/usr/sbin/dispadmin -c TS -s /usr/lib/class/TS/TSbigquanta
fi
exit 0
