Commit eb8582bb authored by carbon's avatar carbon

add missing init file from origin SDK

buildroot-2021.05/board/cvitek/CV180X/overlay/mnt/system/S99msc
to
buildroot-2021.05/board/milkv/duo/overlay/mnt/system/S99msc
parent a718e1cb
#!/bin/sh
case "$1" in
start)
printf "Starting msc: "
/etc/uhubon.sh device
/etc/run_usb.sh probe msc /dev/mmcblk0p1
/etc/run_usb.sh start
[ $? = 0 ] && echo "OK" || echo "FAIL"
;;
stop)
printf "Stopping msc: "
echo "OK"
;;
restart|reload)
"$0" stop
"$0" start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment