mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-04-06 06:43:53 +08:00
* all * ota * all manif * ab * remove these * hash * userdata * ontheflyisthebest * on the fly * dont need * remove * handle fill * comment * all * all img * rename * read * sparse image * tool * no root * userdata * userdata * need this unfort * fix * fix * nop * remove * nop * this too * ota check * better for push * fix * again * good now
16 lines
286 B
Bash
Executable File
16 lines
286 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
|
|
cd $DIR/..
|
|
|
|
./build_kernel.sh
|
|
./build_system.sh
|
|
scripts/build_userdata.sh
|
|
scripts/package_ota.py
|
|
|
|
# push to azure on an internal machine
|
|
if [ "$USER" == "batman" ]; then
|
|
scripts/ota_push.sh staging
|
|
fi
|