mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 18:53:55 +08:00
* refactor: skip AGNOS update for tici models in launch script * back to stock on chffrplus * feat: enhance launch script for Tici model with error handling and fallback * empty new line pls
21 lines
478 B
Bash
Executable File
21 lines
478 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
# On any failure, run the fallback launcher
|
|
trap 'exec ./launch_chffrplus.sh' ERR
|
|
C3_LAUNCH_SH="./sunnypilot/system/hardware/c3/launch_chffrplus.sh"
|
|
|
|
MODEL="$(tr -d '\0' < "/sys/firmware/devicetree/base/model")"
|
|
export MODEL
|
|
|
|
if [ "$MODEL" = "comma tici" ]; then
|
|
# Force a failure if the launcher doesn't exist
|
|
[ -x "$C3_LAUNCH_SH" ] || false
|
|
|
|
# If it exists, run it
|
|
exec "$C3_LAUNCH_SH"
|
|
fi
|
|
|
|
exec ./launch_chffrplus.sh
|