#!/bin/bash
case "$1" in
  start)
        echo "Starting thermal..."
        /sbin/modprobe aml_thermal.ko
    ;;
  stop)
        echo "Stopping thermal..."
        /sbin/modprobe -r aml_thermal.ko
    ;;
  restart|reload)
        echo "Restarting thermal..."
        /sbin/modprobe -r aml_thermal.ko
        /sbin/modprobe aml_thermal.ko
        

    ;;
  *)
    ;;
esac

exit $?

