Modify travis linux build script to use the latest DPDK stable release 16.11.6. Update docs for latest DPDK stable releases.
Signed-off-by: Kevin Traynor <[email protected]> --- .travis/linux-build.sh | 2 +- Documentation/faq/releases.rst | 2 +- Documentation/intro/install/dpdk.rst | 6 +++--- Documentation/topics/dpdk/vhost-user.rst | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.travis/linux-build.sh b/.travis/linux-build.sh index 663f096..7909c0c 100755 --- a/.travis/linux-build.sh +++ b/.travis/linux-build.sh @@ -81,5 +81,5 @@ fi if [ "$DPDK" ]; then if [ -z "$DPDK_VER" ]; then - DPDK_VER="16.11.5" + DPDK_VER="16.11.6" fi install_dpdk $DPDK_VER diff --git a/Documentation/faq/releases.rst b/Documentation/faq/releases.rst index e11de49..260edc6 100644 --- a/Documentation/faq/releases.rst +++ b/Documentation/faq/releases.rst @@ -161,5 +161,5 @@ Q: What DPDK version does each Open vSwitch release work with? 2.5.x 2.2 2.6.x 16.07.2 - 2.7.x 16.11.5 + 2.7.x 16.11.6 ============ ======= diff --git a/Documentation/intro/install/dpdk.rst b/Documentation/intro/install/dpdk.rst index 4f7d20f..39481f2 100644 --- a/Documentation/intro/install/dpdk.rst +++ b/Documentation/intro/install/dpdk.rst @@ -65,7 +65,7 @@ Install DPDK $ cd /usr/src/ - $ wget http://fast.dpdk.org/rel/dpdk-16.11.5.tar.xz - $ tar xf dpdk-16.11.5.tar.xz - $ export DPDK_DIR=/usr/src/dpdk-stable-16.11.5 + $ wget http://fast.dpdk.org/rel/dpdk-16.11.6.tar.xz + $ tar xf dpdk-16.11.6.tar.xz + $ export DPDK_DIR=/usr/src/dpdk-stable-16.11.6 $ cd $DPDK_DIR diff --git a/Documentation/topics/dpdk/vhost-user.rst b/Documentation/topics/dpdk/vhost-user.rst index a267384..8fec00c 100644 --- a/Documentation/topics/dpdk/vhost-user.rst +++ b/Documentation/topics/dpdk/vhost-user.rst @@ -279,7 +279,7 @@ DPDK sources to VM and build DPDK:: $ cd /root/dpdk/ - $ wget http://fast.dpdk.org/rel/dpdk-16.11.5.tar.xz - $ tar xf dpdk-16.11.5.tar.xz - $ export DPDK_DIR=/root/dpdk/dpdk-stable-16.11.5 + $ wget http://fast.dpdk.org/rel/dpdk-16.11.6.tar.xz + $ tar xf dpdk-16.11.6.tar.xz + $ export DPDK_DIR=/root/dpdk/dpdk-stable-16.11.6 $ export DPDK_TARGET=x86_64-native-linuxapp-gcc $ export DPDK_BUILD=$DPDK_DIR/$DPDK_TARGET @@ -365,5 +365,5 @@ Sample XML <disk type='dir' device='disk'> <driver name='qemu' type='fat'/> - <source dir='/usr/src/dpdk-stable-16.11.5'/> + <source dir='/usr/src/dpdk-stable-16.11.6'/> <target dev='vdb' bus='virtio'/> <readonly/> -- 1.8.3.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
