mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-19 02:54:01 +08:00
version: dragonpilot v2023.02.08 release for EON/C2
date: 2023-02-08T05:01:31
dp-dev(priv2) beta2 commit: f770882b7f
13 lines
329 B
Bash
Executable File
13 lines
329 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
if [ -z "$BASEDIR" ]; then
|
|
BASEDIR="/data/openpilot"
|
|
fi
|
|
|
|
source "$BASEDIR/launch_env.sh"
|
|
echo "Installing NEOS update"
|
|
NEOS_PY="$BASEDIR/system/hardware/eon/neos.py"
|
|
MANIFEST="$BASEDIR/system/hardware/eon/oneplus.json"
|
|
$NEOS_PY --swap-if-ready $MANIFEST
|
|
$BASEDIR/system/hardware/eon/updater $NEOS_PY $MANIFEST
|