diff options
author | Ed Kern <ejk@cisco.com> | 2017-11-28 11:17:00 -0700 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2017-11-29 09:56:28 +0000 |
commit | 3d786efcb087533320e89f80077127fc507cfd99 (patch) | |
tree | 34cbc2412f237c4df950c481d34036d8ebf725ca | |
parent | a2ee029d0772e894911c84fb8a0cab5f253e145b (diff) |
Dpdk: 17.08 tarball updated 11/27
The dpdk package posted on static.dpdk.org for 17.08
was updated 11/27. This updates the checksum thats
statically included in makefile. Looks like they
also changed the dir structure to add -stable.
fast.dpdk.org has issues with its mirrors being in
sync...changing to static.dpdk.org for now
Change-Id: Id81e328b07873700ae3f76e1ca819f94f26f38c8
Signed-off-by: Ed Kern <ejk@cisco.com>
-rw-r--r-- | dpdk/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dpdk/Makefile b/dpdk/Makefile index 017850de379..cc59c0cdcf1 100644 --- a/dpdk/Makefile +++ b/dpdk/Makefile @@ -26,12 +26,11 @@ B := $(DPDK_BUILD_DIR) I := $(DPDK_INSTALL_DIR) DPDK_VERSION ?= 17.08 PKG_SUFFIX ?= vpp2 -DPDK_BASE_URL ?= http://fast.dpdk.org/rel +DPDK_BASE_URL ?= http://static.dpdk.org/rel DPDK_TARBALL := dpdk-$(DPDK_VERSION).tar.xz DPDK_TAR_URL := $(DPDK_BASE_URL)/$(DPDK_TARBALL) -DPDK_17.08_TARBALL_MD5_CKSUM := 0641f59ea8ea98afefa7cfa2699f6241 +DPDK_17.08_TARBALL_MD5_CKSUM := 537ff038915fefd0f210905fafcadb4b DPDK_17.11_TARBALL_MD5_CKSUM := 53ee9e054a8797c9e67ffa0eb5d0c701 -DPDK_SOURCE := $(B)/dpdk-$(DPDK_VERSION) MACHINE=$(shell uname -m) NASM_BASE_URL := http://www.nasm.us/pub/nasm/releasebuilds @@ -44,8 +43,10 @@ ISA_L_CRYPTO_LIB := n ifeq ($(DPDK_VERSION),17.08) IPSEC_MB_VER ?= 0.46 +DPDK_SOURCE := $(B)/dpdk-stable-$(DPDK_VERSION) else IPSEC_MB_VER ?= 0.47 +DPDK_SOURCE := $(B)/dpdk-$(DPDK_VERSION) endif ISA_L_CRYPTO_VER := 2.18.0 |