添加后板sdk更改,裁剪文件系统和kernel

This commit is contained in:
lijunliang
2024-05-14 15:08:19 +08:00
parent 47b4c1d7b2
commit d352eaa4c5
28 changed files with 1445 additions and 113 deletions

View File

@@ -0,0 +1,34 @@
#!/bin/sh
#
# Start wifi_deamon....
#
start() {
printf "Starting wifi_deamon....: "
wifi_daemon
sleep 0.2
wifi -o sta
#wifi -a enable
}
stop() {
printf "Stopping wifi_deamon: "
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart|reload)
stop
start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?