nvme/hotplug.sh: Copy external DPDK libs into test VM
Need to select proper path for passing libs into the VM
in case we're building with custom DPDK.
Signed-off-by: Karol Latecki <karol.latecki@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4975 (master)
(cherry picked from commit 097e6e16b9
)
Change-Id: I97d301c70adee31b727c6b6673eadac3cbde9817
Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4984
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
parent
ba9c5abe86
commit
658d7df6a7
@ -96,7 +96,15 @@ files_to_copy="scripts "
|
|||||||
files_to_copy+="include/spdk/pci_ids.h "
|
files_to_copy+="include/spdk/pci_ids.h "
|
||||||
files_to_copy+="build/examples/hotplug "
|
files_to_copy+="build/examples/hotplug "
|
||||||
files_to_copy+="build/lib "
|
files_to_copy+="build/lib "
|
||||||
files_to_copy+="dpdk/build/lib "
|
|
||||||
|
# Select which dpdk libs to copy in case we're not building with
|
||||||
|
# spdk/dpdk submodule
|
||||||
|
if [[ -n "$SPDK_RUN_EXTERNAL_DPDK" ]]; then
|
||||||
|
files_to_copy+="-C $SPDK_RUN_EXTERNAL_DPDK/../.. dpdk/build/lib"
|
||||||
|
else
|
||||||
|
files_to_copy+="dpdk/build/lib "
|
||||||
|
fi
|
||||||
|
|
||||||
(
|
(
|
||||||
cd "$rootdir"
|
cd "$rootdir"
|
||||||
tar -cf - $files_to_copy
|
tar -cf - $files_to_copy
|
||||||
|
Loading…
Reference in New Issue
Block a user