update:add luckfox-pico Ultra support

This commit is contained in:
luckfox-eng29
2024-03-16 17:03:10 +08:00
committed by luckfox-eng33
parent 1e160dee55
commit d3153ac97e
234 changed files with 89019 additions and 2435 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/sh
load_luckfoxconfig() {
if [ -f /etc/luckfox.cfg ] && [ -f /usr/bin/luckfox-config ] ;then
luckfox-config load
fi
}
case $1 in
start)
load_luckfoxconfig
;;
*)
exit 1
;;
esac