mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-07-09 16:52:05 +08:00
4f3cbd21b8
* Remove firwmare.json * match order
14 lines
284 B
Bash
Executable File
14 lines
284 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
|
|
cd $DIR
|
|
|
|
for part in aop abl xbl xbl_config devcfg; do
|
|
tools/edl w ${part}_a $DIR/firmware/$part.bin
|
|
tools/edl w ${part}_b $DIR/firmware/$part.bin
|
|
done
|
|
|
|
./flash_kernel.sh
|
|
./flash_system.sh
|