mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-28 00:42:06 +08:00
c726a82eaf
* mapd: offline/local database * link overpy before manager * add path to deps * down here * this too * don't force redownload/reinstall unless db not current * make things neater in json * small fix * Revert "small fix" This reverts commit dbc70ee6d40b51e4d7c4a4af4523d23737350905. * Revert "make things neater in json" This reverts commit 1b244c552c1bf877e8b6bf879ca73ebf72617025. * neater attempt 2 (no reboot for now) * neater attempt 2 (no reboot for now) * "selected" not working * make it stick * already QString * check when menu is up * check when menu is up * interactive buttons * add label to inform users about car off * update texts * set all params properly * clean up ui logic * test * revert * ui logic again * interactive button * after confirmation updates * only check when selected * stop signs? * bruh * missed * small cleanup * query for real from local db * Revert "query for real from local db" This reverts commit d7eb664da2949b073c7d7eb00e0098aa01c83ad3. * don't hold in same object * remote server as fallback if local server fails * use different waypoint * use function * declare missing vars * skip SSL/TLS verification * fallback to online query if local query fails * don't prompt to reboot if none is selected * update ui on press * Revert "skip SSL/TLS verification" This reverts commit 2eb5c0972a08227edbfc4f50c38d22d2ced62423. * simplier * handle ConnectionError * point to sunnypilot-osm S3 bucket * revert freq of road name * small cleanup * small cleanup * revert * cleanup * TEMP: test online/offline switchover * Revert "TEMP: test online/offline switchover" This reverts commit 4641b8e6f26f4015559a9aff2271f1850708ab09. * set user-agent * more databases! * new urls * TEST: remove check here * parse timestamp from file content instead of HEAD Last Modified * not correct * wrong var * don't need this * have list in cpp * don't read from json * provide expectation * add var to gate feature speed limits * remove unused
98 lines
2.8 KiB
Bash
Executable File
98 lines
2.8 KiB
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
if [ -z "$BASEDIR" ]; then
|
|
BASEDIR="/data/openpilot"
|
|
fi
|
|
|
|
source "$BASEDIR/launch_env.sh"
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
|
|
|
|
function agnos_init {
|
|
# wait longer for weston to come up
|
|
if [ -f "$BASEDIR/prebuilt" ]; then
|
|
sleep 3
|
|
fi
|
|
|
|
# TODO: move this to agnos
|
|
sudo rm -f /data/etc/NetworkManager/system-connections/*.nmmeta
|
|
|
|
# set success flag for current boot slot
|
|
sudo abctl --set_success
|
|
|
|
# Check if AGNOS update is required
|
|
if [ $(< /VERSION) != "$AGNOS_VERSION" ]; then
|
|
AGNOS_PY="$DIR/system/hardware/tici/agnos.py"
|
|
MANIFEST="$DIR/system/hardware/tici/agnos.json"
|
|
if $AGNOS_PY --verify $MANIFEST; then
|
|
sudo reboot
|
|
fi
|
|
$DIR/system/hardware/tici/updater $AGNOS_PY $MANIFEST
|
|
fi
|
|
}
|
|
|
|
function launch {
|
|
# Remove orphaned git lock if it exists on boot
|
|
[ -f "$DIR/.git/index.lock" ] && rm -f $DIR/.git/index.lock
|
|
|
|
# Pull time from panda
|
|
$DIR/selfdrive/boardd/set_time.py
|
|
|
|
# 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}"
|
|
unset AGNOS_VERSION
|
|
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
|
|
|
|
# handle pythonpath
|
|
ln -sfn $(pwd) /data/pythonpath
|
|
export PYTHONPATH="$PWD"
|
|
|
|
# hardware specific init
|
|
agnos_init
|
|
|
|
# write tmux scrollback to a file
|
|
tmux capture-pane -pq -S-1000 > /tmp/launch_log
|
|
|
|
# start manager
|
|
cd selfdrive/manager
|
|
if [ ! -f "/data/params/d/OsmLocal" ]; then
|
|
./custom_dep.py && ./build.py && ./manager.py
|
|
else
|
|
./custom_dep.py && ./build.py && ./local_osm_install.py && ./manager.py
|
|
fi
|
|
|
|
# if broken, keep on screen error
|
|
while true; do sleep 1; done
|
|
}
|
|
|
|
launch
|