mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-07-14 03:12:05 +08:00
e8e36e592d
* remove all armhf
* fix that
* Revert "build_system: stream build output directly into rootfs (#552)"
This reverts commit 71e7369174.
* fix up build
* wifi works
* fix graphics
* revert that
* add back
31 lines
554 B
Bash
Executable File
31 lines
554 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
echo "Installing openpilot dependencies"
|
|
|
|
# Install necessary libs
|
|
apt-fast update
|
|
apt-fast install --no-install-recommends -yq \
|
|
build-essential \
|
|
casync \
|
|
clang \
|
|
curl \
|
|
gpiod \
|
|
libarchive-dev \
|
|
libcurl4-openssl-dev \
|
|
libczmq-dev \
|
|
libdbus-1-dev \
|
|
libffi-dev \
|
|
libfreetype6-dev \
|
|
libglib2.0-0t64 \
|
|
libi2c-dev \
|
|
liblzma-dev \
|
|
libomp-dev \
|
|
libportaudio2 \
|
|
libsqlite3-dev \
|
|
libusb-1.0-0-dev \
|
|
libuv1-dev \
|
|
locales \
|
|
pkg-config \
|
|
wget \
|
|
zlib1g-dev
|