diff options
author | 2018-02-08 15:01:27 +0000 | |
---|---|---|
committer | 2018-02-08 15:03:29 +0000 | |
commit | 946322cf51d4d8c979fc1d9c8fa1fe82c405917e (patch) | |
tree | b69291cb2322b7b504cd9d74ca35f8b62339a5ec /dpdk/Makefile | |
parent | 5c795f7bd17608d441d4e2c7f862ad9d45685b93 (diff) |
Move to 17.11 as default DPDK version.
As 17.11 will be new LTS - made it our default DPDK version.
Updated README.
Change-Id: I955513045ee1c6869a344cb551b095d6971b526f
Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Diffstat (limited to 'dpdk/Makefile')
-rw-r--r-- | dpdk/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/dpdk/Makefile b/dpdk/Makefile index 545f5ab..63ddd6c 100644 --- a/dpdk/Makefile +++ b/dpdk/Makefile @@ -14,7 +14,7 @@ # Scripts require non-POSIX parts of bash SHELL := /bin/bash -DPDK_VERSION ?= 16.11 +DPDK_VERSION ?= v17.11 DPDK_BUILD_DIR ?= $(CURDIR)/_build DPDK_INSTALL_DIR ?= $(DPDK_BUILD_DIR)/dpdk/$(RTE_TARGET) DPDK_PKTMBUF_HEADROOM ?= 128 @@ -125,6 +125,8 @@ $(B)/custom-config: $(B)/.patch.ok Makefile $(call set,RTE_LIBRTE_PORT,n) $(call set,RTE_LIBRTE_TABLE,n) $(call set,RTE_LIBRTE_PIPELINE,n) + $(call set,RTE_LIBRTE_FLOW_CLASSIFY,n) + $(call set,RTE_LIBRTE_PMD_CRYPTO_SCHEDULER,n) $(call set,RTE_KNI_KMOD,n) @rm -f .config.ok @@ -133,11 +135,7 @@ $(B)/.download.ok: @if [ -e $(DPDK_SOURCE) ] ; \ then rm -rf $(DPDK_SOURCE) ; \ fi -ifeq ($(DPDK_VERSION),master) @git clone $(DPDK_GIT_REPO) --branch $(DPDK_VERSION) $(DPDK_SOURCE) -else - @git clone $(DPDK_GIT_REPO) --branch v$(DPDK_VERSION) $(DPDK_SOURCE) -endif @touch $@ .PHONY: download |