#!/bin/sh

start() {
	echo 0 > /sys/class/vtconsole/vtcon1/bind 
	export TSLIB_CONFFILE=/etc/ts.conf
	export TSLIB_PLUGINDIR=/lib/ts
	test_gui /etc/test_gui/simsun.ttc &
	6ull_test.sh &
}
stop() {
	echo OK
}
restart() {
	stop
	start
}

case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  restart|reload)
	restart
	;;
  *)
	exit 1
esac

exit $?

