You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
329 B
12 lines
329 B
#!/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
|
|
|