2020-01-18 02:22:00 +08:00
|
|
|
#!/usr/bin/bash
|
|
|
|
|
|
|
|
if [ -z "$BASEDIR" ]; then
|
|
|
|
BASEDIR="/data/openpilot"
|
|
|
|
fi
|
|
|
|
|
2020-08-13 02:39:21 +08:00
|
|
|
source "$BASEDIR/launch_env.sh"
|
2020-01-18 02:22:00 +08:00
|
|
|
|
2020-08-07 03:49:11 +08:00
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
|
|
|
|
|
2022-06-02 21:20:51 +08:00
|
|
|
function agnos_init {
|
2021-09-07 09:02:56 +08:00
|
|
|
# TODO: move this to agnos
|
|
|
|
sudo rm -f /data/etc/NetworkManager/system-connections/*.nmmeta
|
2020-12-18 20:17:12 +08:00
|
|
|
|
|
|
|
# set success flag for current boot slot
|
|
|
|
sudo abctl --set_success
|
|
|
|
|
2024-02-22 03:48:17 +08:00
|
|
|
# TODO: do this without udev in AGNOS
|
|
|
|
# udev does this, but sometimes we startup faster
|
|
|
|
sudo chgrp gpu /dev/adsprpc-smd /dev/ion /dev/kgsl-3d0
|
|
|
|
sudo chmod 660 /dev/adsprpc-smd /dev/ion /dev/kgsl-3d0
|
|
|
|
|
2020-12-18 20:17:12 +08:00
|
|
|
# Check if AGNOS update is required
|
|
|
|
if [ $(< /VERSION) != "$AGNOS_VERSION" ]; then
|
2022-06-12 07:38:24 +08:00
|
|
|
AGNOS_PY="$DIR/system/hardware/tici/agnos.py"
|
|
|
|
MANIFEST="$DIR/system/hardware/tici/agnos.json"
|
2021-07-30 09:12:37 +08:00
|
|
|
if $AGNOS_PY --verify $MANIFEST; then
|
|
|
|
sudo reboot
|
|
|
|
fi
|
2022-06-12 07:38:24 +08:00
|
|
|
$DIR/system/hardware/tici/updater $AGNOS_PY $MANIFEST
|
2020-12-18 20:17:12 +08:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-09-13 08:57:24 +08:00
|
|
|
function launch {
|
|
|
|
# Remove orphaned git lock if it exists on boot
|
|
|
|
[ -f "$DIR/.git/index.lock" ] && rm -f $DIR/.git/index.lock
|
|
|
|
|
|
|
|
# Check to see if there's a valid overlay-based update available. Conditions
|
|
|
|
# are as follows:
|
|
|
|
#
|
|
|
|
# 1. The BASEDIR init file has to exist, with a newer modtime than anything in
|
|
|
|
# the BASEDIR Git repo. This checks for local development work or the user
|
|
|
|
# switching branches/forks, which should not be overwritten.
|
|
|
|
# 2. The FINALIZED consistent file has to exist, indicating there's an update
|
|
|
|
# that completed successfully and synced to disk.
|
|
|
|
|
|
|
|
if [ -f "${BASEDIR}/.overlay_init" ]; then
|
|
|
|
find ${BASEDIR}/.git -newer ${BASEDIR}/.overlay_init | grep -q '.' 2> /dev/null
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo "${BASEDIR} has been modified, skipping overlay update installation"
|
|
|
|
else
|
|
|
|
if [ -f "${STAGING_ROOT}/finalized/.overlay_consistent" ]; then
|
|
|
|
if [ ! -d /data/safe_staging/old_openpilot ]; then
|
|
|
|
echo "Valid overlay update found, installing"
|
|
|
|
LAUNCHER_LOCATION="${BASH_SOURCE[0]}"
|
|
|
|
|
|
|
|
mv $BASEDIR /data/safe_staging/old_openpilot
|
|
|
|
mv "${STAGING_ROOT}/finalized" $BASEDIR
|
|
|
|
cd $BASEDIR
|
|
|
|
|
|
|
|
echo "Restarting launch script ${LAUNCHER_LOCATION}"
|
2021-01-19 20:02:03 +08:00
|
|
|
unset AGNOS_VERSION
|
2020-09-13 08:57:24 +08:00
|
|
|
exec "${LAUNCHER_LOCATION}"
|
|
|
|
else
|
|
|
|
echo "openpilot backup found, not updating"
|
|
|
|
# TODO: restore backup? This means the updater didn't start after swapping
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2020-12-18 20:17:12 +08:00
|
|
|
# handle pythonpath
|
|
|
|
ln -sfn $(pwd) /data/pythonpath
|
2023-01-01 13:00:50 +08:00
|
|
|
export PYTHONPATH="$PWD"
|
2020-12-18 20:17:12 +08:00
|
|
|
|
|
|
|
# hardware specific init
|
2024-01-19 13:02:18 +08:00
|
|
|
if [ -f /AGNOS ]; then
|
|
|
|
agnos_init
|
|
|
|
fi
|
2020-11-24 09:52:28 +08:00
|
|
|
|
2020-10-21 12:07:12 +08:00
|
|
|
# write tmux scrollback to a file
|
|
|
|
tmux capture-pane -pq -S-1000 > /tmp/launch_log
|
|
|
|
|
2020-01-18 02:22:00 +08:00
|
|
|
# start manager
|
2024-05-26 03:41:17 +08:00
|
|
|
cd system/manager
|
2024-01-19 13:02:18 +08:00
|
|
|
if [ ! -f $DIR/prebuilt ]; then
|
|
|
|
./build.py
|
|
|
|
fi
|
2024-03-14 02:29:58 +08:00
|
|
|
|
2024-06-23 03:06:17 +08:00
|
|
|
./mapd_installer.py; ./manager.py
|
2020-10-21 12:07:12 +08:00
|
|
|
|
2020-01-18 02:22:00 +08:00
|
|
|
# if broken, keep on screen error
|
|
|
|
while true; do sleep 1; done
|
|
|
|
}
|
|
|
|
|
|
|
|
launch
|