From 6729117431e563a7169ac7fa9c64b35dbdcdb399 Mon Sep 17 00:00:00 2001 From: Cian Ferriter Date: Fri, 25 Aug 2017 08:24:38 +0100 Subject: build: Rename cloned repositories and remove cuse VSPERF expects folders to be named a certain way, but this may not be the case if another repository is specified via the package-list.mk file. One example of this is the DPDK stable repo which gets cloned to the "dpdk-stable" directory unless otherwise specified. Thus Makefiles were updated to enforce expected folder names. Unused configuration related to vHostCuse support was removed. Change-Id: Ifa48898d51e96c72e7d740f43cb635d729b2a796 Signed-off-by: Cian Ferriter Reviewed-by: Martin Klozik Reviewed-by: Al Morton Reviewed-by: Christian Trautman Reviewed-by: Sridhar Rao Reviewed-by: Trevor Cooper --- src/dpdk/Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/dpdk') diff --git a/src/dpdk/Makefile b/src/dpdk/Makefile index 69671169..4b4330d7 100755 --- a/src/dpdk/Makefile +++ b/src/dpdk/Makefile @@ -99,9 +99,6 @@ ifdef CONFIG_FILE_BASE $(AT)cd `dirname $(CONFIG_FILE_BASE)` && git checkout `basename $(CONFIG_FILE_BASE)` && cd - endif $(AT)echo "VHOST_USER = $(VHOST_USER)" -ifeq ($(VHOST_USER),n) - $(AT)cd $(WORK_DIR)/lib/librte_vhost/eventfd_link; make -endif @echo "Make done" install: $(INSTALL_TARGET) @@ -126,7 +123,7 @@ sanity: @echo "Make sanity in $(WORK_DIR) (stub) " $(WORK_DIR): - $(AT)git clone $(DPDK_URL) + $(AT)git clone $(DPDK_URL) dpdk $(TAG_DONE_FLAG): $(WORK_DIR) $(AT)cd $(WORK_DIR); git checkout $(DPDK_TAG) -- cgit 1.2.3-korg