The documentation and the travis script were getting the DPDK sources
from the DPDK cgit service at dpdk.org/browse/dpdk.
A fastest alternative is to use the CDN fast.dpdk.org.

Signed-off-by: Thomas Monjalon <[email protected]>
---
 .travis/linux-build.sh |  2 +-
 INSTALL.DPDK.rst       | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/.travis/linux-build.sh b/.travis/linux-build.sh
index 6fe663c..4175d72 100755
--- a/.travis/linux-build.sh
+++ b/.travis/linux-build.sh
@@ -56,7 +56,7 @@ function install_dpdk()
         cd dpdk-$1
         git checkout v$1
     else
-        wget http://www.dpdk.org/browse/dpdk/snapshot/dpdk-$1.tar.gz
+        wget http://fast.dpdk.org/rel/dpdk-$1.tar.gz
         tar xzvf dpdk-$1.tar.gz > /dev/null
         cd dpdk-$1
     fi
diff --git a/INSTALL.DPDK.rst b/INSTALL.DPDK.rst
index a078093..c91cc01 100644
--- a/INSTALL.DPDK.rst
+++ b/INSTALL.DPDK.rst
@@ -69,8 +69,8 @@ DPDK
 1. Download the `DPDK sources`_, extract the file and set ``DPDK_DIR``::
 
        $ cd /usr/src/
-       $ wget http://dpdk.org/browse/dpdk/snapshot/dpdk-16.11.zip
-       $ unzip dpdk-16.11.zip
+       $ wget http://fast.dpdk.org/rel/dpdk-16.11.tar.xz
+       $ tar xf dpdk-16.11.tar.xz
        $ export DPDK_DIR=/usr/src/dpdk-16.11
        $ cd $DPDK_DIR
 
@@ -86,7 +86,7 @@ DPDK
 
        $ export DPDK_TARGET=x86_64-ivshmem-linuxapp-gcc
 
-.. _DPDK sources: http://dpdk.org/browse/dpdk/refs/
+.. _DPDK sources: http://dpdk.org/rel
 
 Install OVS
 ~~~~~~~~~~~
@@ -363,8 +363,8 @@ To being, instantiate the guest::
 Download the DPDK sourcs to VM and build DPDK::
 
     $ cd /root/dpdk/
-    $ wget http://dpdk.org/browse/dpdk/snapshot/dpdk-16.11.zip
-    $ unzip dpdk-16.11.zip
+    $ wget http://fast.dpdk.org/rel/dpdk-16.11.tar.xz
+    $ tar xf dpdk-16.11.tar.xz
     $ export DPDK_DIR=/root/dpdk/dpdk-16.11
     $ export DPDK_TARGET=x86_64-native-linuxapp-gcc
     $ export DPDK_BUILD=$DPDK_DIR/$DPDK_TARGET
-- 
2.7.0

_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to