Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ ARG FVP_CORSTONE315_VERSION=11.27_42
ENV FVP_CORSTONE315_VERSION=$FVP_CORSTONE315_VERSION
ARG FVP_CORSTONE320_VERSION=11.27_25
ENV FVP_CORSTONE320_VERSION=$FVP_CORSTONE320_VERSION
ARG FVP_CORSTONE1000_A320_VERSION=11.30_27
ENV FVP_CORSTONE1000_A320_VERSION=$FVP_CORSTONE1000_A320_VERSION

# Set default shell during Docker image build to bash
SHELL ["/bin/bash", "-eo", "pipefail", "-c"]
Expand Down Expand Up @@ -358,6 +360,13 @@ RUN <<EOF
ln -s /opt/fvps/Corstone-${corstone}/models/*/FVP_* /usr/local/bin
done

# Corstone-1000-A320 uses a different URL pattern (not SSE)
echo "Downloading Corstone-1000-A320 ${FVP_CORSTONE1000_A320_VERSION}"
wget ${WGET_ARGS} -O- https://developer.arm.com/-/cdn-downloads/permalink/FVPs-Corstone-IoT/Corstone-1000-with-Cortex-A320/FVP_Corstone_1000-A320_${FVP_CORSTONE1000_A320_VERSION}_Linux64${SUFFIX}.tgz | tar xz
./FVP_Corstone_1000-A320.sh --no-interactive --i-agree-to-the-contained-eula -d /opt/fvps/Corstone-1000-A320
rm FVP_Corstone_1000-A320.sh
ln -s /opt/fvps/Corstone-1000-A320/models/*/FVP_* /usr/local/bin

declare -A FVP_EXTRACTABLE=(
["RevC-2xAEMvA"]="${FVP_BASE_REVC_VERSION}"
["AEMv8R"]="${FVP_BASE_AEMV8R_VERSION}"
Expand Down