diff options
author | Matthias Runge <mrunge@redhat.com> | 2018-11-23 10:36:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-11-23 10:36:48 +0000 |
commit | e955b0d0ac1d500f6c5ed952c7ad42dac7c4a8f8 (patch) | |
tree | 36912bd539d875ed60271dc8bb34f37b95fd03f5 /src/dpdk/Makefile | |
parent | 892bdcf241acf056395097fa278da22e9c9c013b (diff) | |
parent | b8d251f58b285c216be86bae01b1b18b24221360 (diff) |
Merge "barometer-collectd: Add support for DPDK in container"
Diffstat (limited to 'src/dpdk/Makefile')
-rw-r--r-- | src/dpdk/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/dpdk/Makefile b/src/dpdk/Makefile index f13449c8..40fa4820 100644 --- a/src/dpdk/Makefile +++ b/src/dpdk/Makefile @@ -77,6 +77,11 @@ else $(AT)sed -i -e 's/CONFIG_RTE_EAL_PMD_PATH=.*/CONFIG_RTE_EAL_PMD_PATH=\"\/usr\/lib\/dpdk-pmd\/\"/g' $(CONFIG_FILE_LINUXAPP) $(AT)sed -i -e 's/CONFIG_RTE_BUILD_COMBINE_LIBS=./CONFIG_RTE_BUILD_COMBINE_LIBS=y/g' $(CONFIG_FILE_LINUXAPP) endif +# do not build kernel module under docker +ifdef DOCKER + $(AT)sed -i -e 's/CONFIG_RTE_EAL_IGB_UIO=y/CONFIG_RTE_EAL_IGB_UIO=n/' $(CONFIG_FILE_LINUXAPP) + $(AT)sed -i -e 's/CONFIG_RTE_KNI_KMOD=y/CONFIG_RTE_KNI_KMOD=n/' $(CONFIG_FILE_LINUXAPP) +endif # CentOS 7.3 specific config changes to compile ifeq ($(ID),"centos") ifeq ($(VERSION_ID),"7") @@ -98,7 +103,10 @@ install: $(INSTALL_TARGET) $(AT)cd $(WORK_DIR); sudo make -j install prefix=/usr; cd - $(AT)sudo mkdir -p /usr/lib/dpdk-pmd $(AT)find /usr/lib -type f -name 'librte_pmd*' | while read path; do sudo ln -fs $$path /usr/lib/dpdk-pmd/$$(echo $$path | grep -o 'librte_.*so'); done +# under docker there won't be kernel module available +ifndef DOCKER $(AT)sudo cp -a $(WORK_DIR)/build/kmod $(INSTALL_DIR)/lib/modules/$(KERNEL_VERSION) +endif @echo "install done" # hard way to clean and clobber |