mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-12 04:42:13 +08:00
4be789d40a
* simplify passive handling * makes more sense old-commit-hash: 5ccff25d885365e4247665fdf8380c6b67c36b28
16 lines
236 B
Bash
Executable File
16 lines
236 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
# TODO: this can be removed after 0.9.6 release
|
|
|
|
# migrate continue.sh and relaunch
|
|
cat << EOF > /data/continue.sh
|
|
#!/usr/bin/bash
|
|
|
|
export PASSIVE=1
|
|
|
|
cd /data/openpilot
|
|
exec ./launch_openpilot.sh
|
|
EOF
|
|
|
|
/data/continue.sh
|