#! /bin/sh

# system_update       init.d script to system_update the device

set -e

case "$1" in
  start)
		echo -n "Starting sbl2_display_storage:"
		cd /zte/ztedata/zte_sbl2_storage
		start-stop-daemon -S -a /usr/bin/sbl2_display_storage
		echo -n "done"
		rm /zte/ztedata/zte_sbl2_storage/BootImage.ini
		;;
  stop)
        ;;
  restart)
        ;;
  *)
        echo "Usage shutdown { start | stop | restart}" >&2
        exit 1
        ;;
esac

exit 0
