Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,6 @@ jobs:
- name: Run FVP binaries to verify build
run: |
for x in ./bin/*; do
echo "$x --version"
$x --version || exit 1
done
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ while IFS= read -r -d '' model; do
if [ ! -L "bin/${model}" ]; then
ln -s ../fvp.sh "bin/${model}"
fi
done < <(docker run --rm "fvp:${FVP_VERSION}" find /opt/avh-fvp/bin/ -maxdepth 1 -type f -executable -follow -print0)
done < <(docker run --rm "fvp:${FVP_VERSION}" find /opt/avh-fvp/bin/ -name "FVP_*" -maxdepth 1 -type f -executable -follow -print0)

exit 0
6 changes: 3 additions & 3 deletions fvprc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export FVP_VERSION=${FVP_VERSION:-"11.30.29"}
export FVP_VERSION=${FVP_VERSION:-"11.31.28"}
export FVP_BASE_URL=${FVP_BASE_URL:-"https://artifacts.tools.arm.com/avh"}

if [[ "$(uname -m)" == "arm64" ]]; then
export FVP_ARCHIVE=${FVP_ARCHIVE:-"avh-linux-aarch64_11.30_29_Linux64_armv8l.tgz"}
export FVP_ARCHIVE=${FVP_ARCHIVE:-"avh-linux-aarch64_11.31_28_Linux64_armv8l.tar.gz"}
else
export FVP_ARCHIVE=${FVP_ARCHIVE:-"avh-linux-x86_11.30_29_Linux64.tgz "}
export FVP_ARCHIVE=${FVP_ARCHIVE:-"avh-linux-x86_11.31_28_Linux64.tar.gz"}
fi