Skip to content

Commit 0123938

Browse files
authored
Update version of FVPs used for testing (#568)
A new version of Arm's Ecosystem FVPs have been release and, with that, the links for the older versions are no longer valid. This updates the get_fvps.sh script to use the links for the new version.
1 parent 8ac25ff commit 0123938

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

fvp/get_fvps.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ while true; do
3535
done
3636

3737
URL_CORSONE_310='https://developer.arm.com/-/media/Arm%20Developer%20Community/Downloads/OSS/FVP/Corstone-310/FVP_Corstone_SSE-310_11.24_13_Linux64.tgz?rev=c370b571bdff42d3a0152471eca3d798&hash=1E388EE3B6E8F675D02D2832DBE61946DEC0386A'
38-
URL_BASE_AEM_A='https://developer.arm.com/-/cdn-downloads/permalink/Fixed-Virtual-Platforms/FM-11.26/FVP_Base_RevC-2xAEMvA_11.26_11_Linux64.tgz'
39-
URL_BASE_AEM_R='https://developer.arm.com/-/cdn-downloads/permalink/Fixed-Virtual-Platforms/FM-11.26/FVP_Base_AEMv8R_11.26_11_Linux64.tgz'
40-
URL_CRYPTO='https://developer.arm.com/-/cdn-downloads/permalink/Fast-Models-Crypto-Plug-in/FM-11.26/FastModels_crypto_11.26.011_Linux64.tgz'
38+
URL_BASE_AEM_A='https://developer.arm.com/-/cdn-downloads/permalink/Fixed-Virtual-Platforms/FM-11.27/FVP_Base_RevC-2xAEMvA_11.27_19_Linux64.tgz'
39+
URL_BASE_AEM_R='https://developer.arm.com/-/cdn-downloads/permalink/Fixed-Virtual-Platforms/FM-11.27/FVP_Base_AEMv8R_11.27_19_Linux64.tgz'
40+
URL_CRYPTO='https://developer.arm.com/-/cdn-downloads/permalink/Fast-Models-Crypto-Plug-in/FM-11.27/FastModels_crypto_11.27.019_Linux64.tgz'
4141

4242
cd "$(dirname "$0")"
4343

@@ -59,19 +59,19 @@ tar -xf ${DOWNLOAD_DIR}/FVP_Corstone_SSE-310_11.24_13_Linux64.tgz
5959
fi
6060

6161
if [ ! -d "Base_RevC_AEMvA_pkg" ]; then
62-
tar -xf ${DOWNLOAD_DIR}/FVP_Base_RevC-2xAEMvA_11.26_11_Linux64.tgz
62+
tar -xf ${DOWNLOAD_DIR}/FVP_Base_RevC-2xAEMvA_11.27_19_Linux64.tgz
6363
# (Extracted directly into ./Base_RevC_AEMvA_pkg/, no installer)
6464
fi
6565

6666
if [ ! -d "AEMv8R_base_pkg" ]; then
67-
tar -xf ${DOWNLOAD_DIR}/FVP_Base_AEMv8R_11.26_11_Linux64.tgz
67+
tar -xf ${DOWNLOAD_DIR}/FVP_Base_AEMv8R_11.27_19_Linux64.tgz
6868
# (Extracted directly into ./AEMv8R_base_pkg/, no installer)
6969
fi
7070

71-
if [ ! -d "FastModelsPortfolio_11.26" ]; then
72-
tar -xf ${DOWNLOAD_DIR}/FastModels_crypto_11.26.011_Linux64.tgz
71+
if [ ! -d "FastModelsPortfolio_11.27" ]; then
72+
tar -xf ${DOWNLOAD_DIR}/FastModels_crypto_11.27.019_Linux64.tgz
7373
# SDDKW-93582: Non-interactive installation fails if cwd is different.
74-
pushd FastModels_crypto_11.26.011_Linux64
74+
pushd FastModels_crypto_11.27.019_Linux64
7575
# This installer doesn't allow providing a default path for interactive
7676
# installation.
7777
./setup.bin $INSTALLER_FLAGS_CRYPTO

0 commit comments

Comments
 (0)