diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2017-08-11 13:24:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-11 13:24:18 +0000 |
commit | f8137ae0ea1c41c2e37a7ccd2a5d4b65a37e5dba (patch) | |
tree | a5513a281e40a244f082be4ad867ba81f81561ac /ci/deploy.sh | |
parent | 530987f59295ca04b340f5dc7fd2abc53839a85f (diff) | |
parent | 4023a639de3873bbae3e2b112f652791c5962ffa (diff) |
Merge "lib.sh: AArch64: Use VGA video mode for guests"
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-x | ci/deploy.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 7b3bf54c4..a39d4946b 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -283,6 +283,12 @@ pushd "${DEPLOY_DIR}" > /dev/null [ -n "$(command -v yum)" ] && sudo yum install -y \ git make rsync genisoimage curl virt-install qemu-kvm +if [ "$(uname -i)" = "aarch64" ]; then + [ -n "$(command -v apt-get)" ] && sudo apt-get install -y vgabios && \ + sudo ln -sf /usr/share/vgabios/vgabios.bin /usr/share/qemu/vgabios-stdvga.bin + [ -n "$(command -v yum)" ] && sudo yum install -y vgabios +fi + # Check scenario file existence if [[ ! -f ../config/scenario/${DEPLOY_TYPE}/${DEPLOY_SCENARIO}.yaml ]]; then notify "[WARN] ${DEPLOY_SCENARIO}.yaml not found! \ |