#!/bin/sh
#
# This shell script is to interface with SHWP's parse_dynamic_clustertoc
#
# This test checks what the platform karch is.
#

PLATFORM_KARCH=`/sbin/uname -m`

case "$PLATFORM_KARCH"
in
	sun4us)   exit 0;;
        sun4u)    exit 0;;
esac
exit 1
