diff options
author | Maryam Tahhan <maryam.tahhan@intel.com> | 2015-07-27 17:22:58 +0100 |
---|---|---|
committer | Maryam Tahhan <maryam.tahhan@intel.com> | 2015-07-27 17:22:58 +0100 |
commit | 071071fb199833debb64625e51a4fc612e83019f (patch) | |
tree | 1cee6b5029f834c39624e0783b47ee4d6168cbad /src/dpdk/Makefile | |
parent | d688a143c3c4a7e4e4539aa175669c26a0ac89d3 (diff) |
BUILD: Fix Build to allow us to verify patches
Fix build so as we no longer use the HEAD of OVS master, but a specific
commit and modify the DPDK build to edit the configuration file.
Change-Id: I0067b53e5c5295d87b9daf49a9d1ff9e4081558e
Signed-off-by: Maryam Tahhan <maryam.tahhan@intel.com>
Diffstat (limited to 'src/dpdk/Makefile')
-rwxr-xr-x | src/dpdk/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/dpdk/Makefile b/src/dpdk/Makefile index 3ca2e220..1f4ca0ae 100755 --- a/src/dpdk/Makefile +++ b/src/dpdk/Makefile @@ -42,7 +42,7 @@ all: force_make INSTALL_TARGET = force_make force_make: $(TAG_DONE_FLAG) - $(AT)cd $(WORK_DIR); make install T=$(DPDK_TARGET) CONFIG_RTE_LIBRTE_KNI=n CONFIG_RTE_LIBRTE_VHOST=y CONFIG_RTE_LIBRTE_VHOST_USER=n CONFIG_RTE_BUILD_COMBINE_LIBS=y -j + $(AT)cd $(WORK_DIR); make install T=$(DPDK_TARGET) -j @echo "Make done" install: $(INSTALL_TARGET) @@ -50,7 +50,7 @@ install: $(INSTALL_TARGET) @echo "install done" # hard way to clean and clobber -clean: +clean: cleanse clobber: $(AT)rm -rf $(WORK_DIR) @@ -70,4 +70,7 @@ $(WORK_DIR): $(TAG_DONE_FLAG): $(WORK_DIR) $(AT)cd $(WORK_DIR); git checkout $(DPDK_TAG) + $(AT)sed -i 's/CONFIG_RTE_BUILD_COMBINE_LIBS=n/CONFIG_RTE_BUILD_COMBINE_LIBS=y/g' $(CONFIG_FILE) + $(AT)sed -i 's/CONFIG_RTE_LIBRTE_VHOST=n/CONFIG_RTE_LIBRTE_VHOST=y/g' $(CONFIG_FILE) + $(AT)sed -i 's/CONFIG_RTE_LIBRTE_KNI=y /CONFIG_RTE_LIBRTE_KNI=n/g' $(CONFIG_FILE) $(AT)touch $@ |