mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-06-08 11:04:51 +08:00
11 lines
234 B
Bash
Executable File
11 lines
234 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
|
|
cd $DIR
|
|
|
|
scripts/mdma.py --missing-ok reboot-qdl
|
|
tools/qdl flash boot $DIR/output/boot.img
|
|
tools/qdl reset
|
|
scripts/mdma.py --missing-ok reboot
|