diff --git a/test/common/config/vm_setup.sh b/test/common/config/vm_setup.sh index 65ecf4f933..3f53f01c33 100755 --- a/test/common/config/vm_setup.sh +++ b/test/common/config/vm_setup.sh @@ -90,6 +90,13 @@ function install_iscsi_adm() function install_qat() { + + if [ "$PACKAGEMNG" = "dnf" ]; then + sudo dnf install -y libudev-devel + elif [ "$PACKAGEMNG" = "apt-get" ]; then + sudo apt-get install -y libudev-dev + fi + if echo $CONF | grep -q qat; then qat_tarball=$(basename $DRIVER_LOCATION_QAT) kernel_maj=$(uname -r | cut -d'.' -f1)