#!/bin/sh

KERNVER=`uname -r | cut -d"." -f 2`

if [ $KERNVER -eq 6 ];
then
	exec gradm2_26 $*
else
	exec gradm2_24 $*
fi
