#!/bin/sh
. /etc/init.d/rc.functions

case "$1" in
	start)
		if [ -n "$EM8300SETUP_ARGS" ]; then
			echo "Seting up em8300"
			em8300setup $EM8300SETUP_ARGS
			check_status
		fi
		;;
	stop)
		;;
	*)
		echo "Usage $0 {start | teststop | stop}"
		;;
esac
