mirror of
https://github.com/linux-msm/cdba.git
synced 2026-02-25 13:11:56 -08:00
30 lines
441 B
Bash
30 lines
441 B
Bash
|
|
#!/bin/sh
|
||
|
|
# SPDX-License-Identifier: GPL-2.0
|
||
|
|
#
|
||
|
|
# Copyright (c) 2021 Canonical Ltd.
|
||
|
|
# Copyright (c) 2023 Linaro Ltd
|
||
|
|
# Author: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
|
||
|
|
# <krzk@kernel.org>
|
||
|
|
#
|
||
|
|
|
||
|
|
set -ex
|
||
|
|
|
||
|
|
PKGS_CC="gcc"
|
||
|
|
case $CC in
|
||
|
|
clang*)
|
||
|
|
PKGS_CC="clang"
|
||
|
|
;;
|
||
|
|
esac
|
||
|
|
|
||
|
|
apk add \
|
||
|
|
linux-headers \
|
||
|
|
libftdi1-dev \
|
||
|
|
yaml-dev \
|
||
|
|
eudev-dev \
|
||
|
|
meson \
|
||
|
|
musl-dev \
|
||
|
|
libc-dev \
|
||
|
|
$PKGS_CC
|
||
|
|
|
||
|
|
echo "Install finished: $0"
|