mirror of
https://github.com/LuckfoxTECH/luckfox-pico.git
synced 2026-01-18 03:28:19 +01:00
17 lines
175 B
Bash
Executable File
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
|