mirror of
https://github.com/linux-msm/qrtr.git
synced 2025-12-24 05:56:29 +01:00
The qrtr-ns has been superceded by the in-kernel nameserver since multiple years. If anybody wants to do archeology, they can find qrtr-ns with old releases / in the git history. Drop it and remove quite some code. Signed-off-by: Luca Weiss <luca.weiss@fairphone.com>
37 lines
783 B
Bash
Executable File
37 lines
783 B
Bash
Executable File
#!/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
|
|
|
|
apt update
|
|
|
|
# Some distros (e.g. Ubuntu Hirsute) might pull tzdata which asks questions
|
|
export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true
|
|
|
|
# Choose some random place in Europe
|
|
echo "tzdata tzdata/Areas select Europe
|
|
tzdata tzdata/Zones/Europe select Berlin
|
|
" > /tmp/tzdata-preseed.txt
|
|
debconf-set-selections /tmp/tzdata-preseed.txt
|
|
|
|
PKGS_CC="build-essential"
|
|
case $CC in
|
|
clang*)
|
|
PKGS_CC="clang"
|
|
;;
|
|
esac
|
|
|
|
apt install -y --no-install-recommends \
|
|
pkg-config \
|
|
meson \
|
|
libc6-dev \
|
|
$PKGS_CC
|
|
|
|
echo "Install finished: $0"
|