From 7bd6cad821890db71c6ebacc2ccc78c2e662a948 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Tue, 18 Aug 2026 19:06:48 -0700 Subject: [PATCH] Re-open agnos updater UI if crash (#38672) loop if crash --- launch_chffrplus.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/launch_chffrplus.sh b/launch_chffrplus.sh index 62ebffd27..f30e03ca6 100755 --- a/launch_chffrplus.sh +++ b/launch_chffrplus.sh @@ -24,7 +24,9 @@ function agnos_init { if $AGNOS_PY --verify $MANIFEST; then sudo reboot fi - $DIR/openpilot/common/hardware/comma/updater $AGNOS_PY $MANIFEST + while true; do + $DIR/openpilot/common/hardware/comma/updater $AGNOS_PY $MANIFEST + done fi }