
TYPE=`grep "system type" /proc/cpuinfo | awk '{print $NF}'`
VARI=`grep "system variation" /proc/cpuinfo | awk '{print $NF}'`

if [ $TYPE = "Tsunami" ] ; then
	if [ $VARI = "Clipper" ]; then
		echo shark
	elif [ $VARI = "DP264" ] ; then
		echo swordfish+
		# swordfish will be covered by swordfish+ config file.
		# you will get many warnings though.
	else
		echo Unknown
	fi
elif [ $TYPE = "Nautilus" ] ; then
	echo nautilus
else
	echo Unknown
fi

