#!/bin/sh
case "$1" in
  start)
	echo "Starting setbootflag..."
	/usr/bin/ota_upgrade -s
	;;
  *)
	exit 1
esac
