diff options
author | Thomas Monjalon <thomas.monjalon@6wind.com> | 2016-06-02 14:52:32 +0200 |
---|---|---|
committer | Damjan Marion <damarion@cisco.com> | 2016-06-05 08:45:40 +0000 |
commit | 96e10b554f4561d343cb1eb588dfa9789e74a6f0 (patch) | |
tree | 758d6c205e6f43ecb2fa52b5e803f4c42fbec567 /dpdk | |
parent | 08602d129be6b633a3619ad3699aa2cf6ad31dd5 (diff) |
dpdk: download from dpdk.org
The tarball repository fast.dpdk.org is fast and reliable enough
to be used in VPP build process.
Change-Id: Ifaae57d6f8308127b93fc51b2a2a863da5766cd2
Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Diffstat (limited to 'dpdk')
-rw-r--r-- | dpdk/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dpdk/Makefile b/dpdk/Makefile index b7e1e097212..51c7ee5befe 100644 --- a/dpdk/Makefile +++ b/dpdk/Makefile @@ -25,12 +25,12 @@ DPDK_DEBUG ?= n B := $(DPDK_BUILD_DIR) I := $(DPDK_INSTALL_DIR) DPDK_VERSION ?= 16.04 -DPDK_BASE_URL ?= https://nexus.fd.io/content/repositories/thirdparty/ -DPDK_TARBALL := dpdk-$(DPDK_VERSION).tar.gz +DPDK_BASE_URL ?= http://fast.dpdk.org/rel +DPDK_TARBALL := dpdk-$(DPDK_VERSION).tar.xz DPDK_TAR_URL := $(DPDK_BASE_URL)/$(DPDK_TARBALL) -DPDK_2.1.0_TARBALL_MD5_CKSUM := 205a0d12bfd6eb717d57506272f43519 -DPDK_2.2.0_TARBALL_MD5_CKSUM := 22e2fd68cd5504f43fe9a5a6fd6dd938 -DPDK_16.04_TARBALL_MD5_CKSUM := 0728d506d7f56eb64233e824fa3c098a +DPDK_2.1.0_TARBALL_MD5_CKSUM := a0d69f78f360e03dbdf38ae93fad32d4 +DPDK_2.2.0_TARBALL_MD5_CKSUM := bfa10283b49d56264c82519d130458cc +DPDK_16.04_TARBALL_MD5_CKSUM := d1f82e7d7589b3b2f623c155442b8306 DPDK_SOURCE := $(B)/dpdk-$(DPDK_VERSION) ifneq (,$(findstring clang,$(CC))) @@ -151,7 +151,7 @@ download: $(B)/.download.ok $(B)/.extract.ok: $(B)/.download.ok @echo --- extracting $(DPDK_TARBALL) --- - @tar --directory $(B) --extract --file $(CURDIR)/$(DPDK_TARBALL) --gzip + @tar --directory $(B) --extract --file $(CURDIR)/$(DPDK_TARBALL) @touch $@ .PHONY: extract |