xref: /OK3568_Linux_fs/external/recovery/update_engine/S99_bootcontrol (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1case "$1" in
2  start)
3        /usr/bin/updateEngine --misc=now
4        ;;
5  stop)
6        printf "stop finished\n"
7        ;;
8  *)
9        echo "Usage: $0 {start|stop}"
10        exit 1
11        ;;
12esac
13exit 0
14