From 69122d2a05ab0e07dd77e32741033f31270557d7 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Thu, 19 May 2022 17:45:57 +0100 Subject: [PATCH] CCv0: Fix ccv0.sh to install virtiofsd - Add call to install_virtiofsd.sh - Remove the qemu build in the cloud_hypervisor path Fixes: #4286 Signed-off-by: stevenhorsman --- docs/how-to/ccv0.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/how-to/ccv0.sh b/docs/how-to/ccv0.sh index 11110875ad..60f8db4d84 100755 --- a/docs/how-to/ccv0.sh +++ b/docs/how-to/ccv0.sh @@ -328,14 +328,12 @@ install_guest_kernel_image() { } build_qemu() { + ${tests_repo_dir}/.ci/install_virtiofsd.sh ${tests_repo_dir}/.ci/install_qemu.sh } build_cloud_hypervisor() { - # While we still rely on the C version of virtiofsd, let's - # install QEMU, which will then bring virtiofsd together. - build_qemu - + ${tests_repo_dir}/.ci/install_virtiofsd.sh ${tests_repo_dir}/.ci/install_cloud_hypervisor.sh }