mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-07-09 00:32:04 +08:00
7e92eaf5d9
* update modetest to display black * start build script --------- Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
17 lines
264 B
Bash
Executable File
17 lines
264 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
|
|
|
|
cd $DIR
|
|
|
|
|
|
if [ ! -d libdrm/ ]; then
|
|
git clone https://github.com/grate-driver/libdrm
|
|
fi
|
|
cd libdrm
|
|
git fetch --all
|
|
git checkout 3e3c53e
|
|
git reset --hard
|
|
git clean -xdff .
|