File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ # Copyright (c) Meta Platforms, Inc. and affiliates.
3+ # All rights reserved.
4+ # Copyright 2025 Arm Limited and/or its affiliates.
5+ #
6+ # This source code is licensed under the BSD-style license found in the
7+ # LICENSE file in the root directory of this source tree.
8+
9+ set -ex
10+
11+ install_arm_prerequiresites () {
12+ apt-get update -y
13+ apt-get install -y --no-install-recommends \
14+ mesa-vulkan-drivers libvulkan1
15+ rm -rf /var/lib/apt/lists/*
16+ }
17+
18+ install_arm_prerequiresites
Original file line number Diff line number Diff line change @@ -83,6 +83,9 @@ RUN if [ -n "${ANDROID_NDK_VERSION}" ]; then bash ./install_android.sh; fi
8383RUN rm install_android.sh
8484
8585ARG ARM_SDK
86+ COPY ./common/install_arm.sh install_arm.sh
87+ RUN if [ -n "${ARM_SDK}" ]; then bash ./install_arm.sh; fi
88+ RUN rm install_arm.sh
8689
8790ARG ZEPHYR_SDK
8891COPY ./common/install_zephyr.sh install_zephyr.sh
You can’t perform that action at this time.
0 commit comments