luckfox-pico-sdk/sysdrv/tools/board/idb_bootconfig/S80idb_bootconfig
2023-08-08 20:36:47 +08:00

17 lines
175 B
Bash
Executable File

#! /bin/sh
#
which idb_bootconfig &>/dev/null || exit 0
case "$1" in
start|"")
idb_bootconfig
;;
stop)
;;
*)
echo "Usage: $0 {start|stop}" >&2
exit 1
;;
esac