diff options
author | Peter Mikus <pmikus@cisco.com> | 2019-02-19 12:18:39 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2019-02-19 13:46:08 +0000 |
commit | b0330dead145c5c30a09be05b6a33c7d6dc0e72d (patch) | |
tree | c3b4ab6f7547eec9c11eda188190c4caa4c0c801 /resources/libraries | |
parent | e0e76e6ac30312d84424023a76d612606e0040d4 (diff) |
Expose DPDK version into separate Variable file
Change-Id: If9707297a430285a242c3dae49c216d952a9be12
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Diffstat (limited to 'resources/libraries')
-rw-r--r-- | resources/libraries/bash/function/gather.sh | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/resources/libraries/bash/function/gather.sh b/resources/libraries/bash/function/gather.sh index 28a84ca10f..b169445bb2 100644 --- a/resources/libraries/bash/function/gather.sh +++ b/resources/libraries/bash/function/gather.sh @@ -97,9 +97,12 @@ function gather_dpdk () { die "Composite piped command failed." } else - echo "Downloading DPDK packages of specific version from repo..." - # TODO: Can we autodetect this based on what CSIT-stable VPP uses? - dpdk_stable_ver="dpdk-19.02.tar.xz" + echo "Downloading DPDK package of specific version from repo ..." + # Downloading DPDK version based on what VPP is using. Currently + # it is not easy way to detect from VPP version automatically. + dpdk_stable_ver="$(< "${CSIT_DIR}/DPDK_VPP_VER")".tar.xz || { + die "Failed to read DPDK VPP version!" + } fi # TODO: Use "wget -N" instead checking for file presence? if [[ ! -f "${dpdk_stable_ver}" ]]; then |