#!/bin/sh

# Check root
if [ "`whoami`" != "root" ]; then
  echo "You must be root to run this script."
  echo ""
  exit
fi

rm -f /usr/share/usb/sfr300v2.hex
rm -f /etc/udev/rules.d/sfr.rules
rm -f /etc/udev/rules.d/85-sfr.rules

echo "Uninstallation finished."
exit 0

