#!/bin/sh

echo -n "utils: "

if [ "$1" != "driver" ]; then
  echo "Driver required..."
  exit 1
fi

#if [ "$2" != "libgus" ]; then
#  echo "LIBGUS library required..."
#  exit 1  
#fi

echo "Success..."
exit 0
