feat(rk3588s): blink AP display and package source tree

This commit is contained in:
2026-05-23 17:44:47 +08:00
parent 9eddc702b6
commit 5347a728da
1332 changed files with 377937 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
#! /bin/sh
start() {
demo &
}
case "$1" in
start)
start
;;
*)
echo "Usage: $0 {start}"
exit 1
esac
exit $?