summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBogdan Pricope <bogdan.pricope@linaro.org>2018-05-31 11:13:23 +0300
committerBogdan Pricope <bogdan.pricope@linaro.org>2018-05-31 11:35:03 +0300
commita0e9c13f088ea39e86d5ba061ca87214d1aa18bd (patch)
tree8dd17a7cd9645fb4113e64d8dd2078d606e7d6b5
parentf6abb626c380f356910843122c86317a875fe162 (diff)
all-test: bump to dpdk 17.11HEADmaster
Signed-off-by: Bogdan Pricope <bogdan.pricope@linaro.org>
-rw-r--r--ofp_fpm_burstmode/server/ofp_fpm_burstmode_dpdk.yaml7
-rw-r--r--ofp_netwrap/server/ofp_netwrap_dpdk.yaml7
-rw-r--r--ofp_udp_fwd_socket/server/ofp_udp_fwd_socket_dpdk.yaml7
-rw-r--r--ofp_webserver/server/ofp_webserver_dpdk_epoll.yaml7
-rw-r--r--ofp_webserver2/server/ofp_webserver2_dpdk.yaml7
5 files changed, 20 insertions, 15 deletions
diff --git a/ofp_fpm_burstmode/server/ofp_fpm_burstmode_dpdk.yaml b/ofp_fpm_burstmode/server/ofp_fpm_burstmode_dpdk.yaml
index bf56b9c..7aef4d4 100644
--- a/ofp_fpm_burstmode/server/ofp_fpm_burstmode_dpdk.yaml
+++ b/ofp_fpm_burstmode/server/ofp_fpm_burstmode_dpdk.yaml
@@ -19,7 +19,7 @@ params:
OFP_BRANCH_DFLT: master
OFP_CONFIG_FLV: default
DPDK_REPOSITORY: http://dpdk.org/git/dpdk
- DPDK_TAG: v17.08
+ DPDK_TAG: v17.11
DPDK_TARGET: x86_64-native-linuxapp-gcc
DPDK_DIR: dpdk
ODP_REPOSITORY_DFLT: https://github.com/Linaro/odp
@@ -67,7 +67,8 @@ install:
- cd $BUILD_DIR/$DPDK_DIR/$DPDK_TARGET
- sed -ri 's,(CONFIG_RTE_LIBRTE_PMD_PCAP=).*,\1y,' .config
- cd $BUILD_DIR/$DPDK_DIR
- - make install T=$DPDK_TARGET EXTRA_CFLAGS="-fPIC"
+ - make build O=$DPDK_TARGET EXTRA_CFLAGS="-fPIC"
+ - make install O=$DPDK_TARGET DESTDIR=$DPDK_TARGET
- cd $BUILD_DIR
- echo "Build ODP"
- ODP_REPOSITORY=${ODP_REPOSITORY:-${ODP_REPOSITORY_DFLT}}
@@ -80,7 +81,7 @@ install:
- git checkout -b test_perf origin/$ODP_BRANCH
- ./bootstrap || true
- autoreconf -i
- - ./configure --prefix=$ODP_INSTALL_DIR --with-dpdk-path=$BUILD_DIR/$DPDK_DIR/$DPDK_TARGET --disable-test-cpp --disable-test-perf --disable-test-vald --disable-test-perf-proc --disable-test-example --disable-test-helper --enable-dpdk-zero-copy --disable-abi-compat
+ - ./configure --prefix=$ODP_INSTALL_DIR --with-dpdk-path=$BUILD_DIR/$DPDK_DIR/$DPDK_TARGET/usr/local --disable-test-cpp --disable-test-perf --disable-test-vald --disable-test-perf-proc --disable-test-example --disable-test-helper --enable-dpdk-zero-copy --disable-abi-compat
- make clean
- make
- make install
diff --git a/ofp_netwrap/server/ofp_netwrap_dpdk.yaml b/ofp_netwrap/server/ofp_netwrap_dpdk.yaml
index 9437164..bcc6c44 100644
--- a/ofp_netwrap/server/ofp_netwrap_dpdk.yaml
+++ b/ofp_netwrap/server/ofp_netwrap_dpdk.yaml
@@ -24,7 +24,7 @@ params:
OFP_CONFIG_FLV: netwrap-webserver
OFP_INSTALL_DIR: /root/install_dir
DPDK_REPOSITORY: http://dpdk.org/git/dpdk
- DPDK_TAG: v17.08
+ DPDK_TAG: v17.11
DPDK_TARGET: x86_64-native-linuxapp-gcc
DPDK_DIR: dpdk
ODP_REPOSITORY_DFLT: https://github.com/Linaro/odp
@@ -72,7 +72,8 @@ install:
- cd $BUILD_DIR/$DPDK_DIR/$DPDK_TARGET
- sed -ri 's,(CONFIG_RTE_LIBRTE_PMD_PCAP=).*,\1y,' .config
- cd $BUILD_DIR/$DPDK_DIR
- - make install T=$DPDK_TARGET EXTRA_CFLAGS="-fPIC"
+ - make build O=$DPDK_TARGET EXTRA_CFLAGS="-fPIC"
+ - make install O=$DPDK_TARGET DESTDIR=$DPDK_TARGET
- cd $BUILD_DIR
- echo "Build ODP"
- ODP_REPOSITORY=${ODP_REPOSITORY:-${ODP_REPOSITORY_DFLT}}
@@ -85,7 +86,7 @@ install:
- git checkout -b test_perf origin/$ODP_BRANCH
- ./bootstrap || true
- autoreconf -i
- - ./configure --prefix=$ODP_INSTALL_DIR --with-dpdk-path=$BUILD_DIR/$DPDK_DIR/$DPDK_TARGET --disable-test-cpp --disable-test-perf --disable-test-vald --disable-test-perf-proc --disable-test-example --disable-test-helper --enable-dpdk-zero-copy --disable-abi-compat
+ - ./configure --prefix=$ODP_INSTALL_DIR --with-dpdk-path=$BUILD_DIR/$DPDK_DIR/$DPDK_TARGET/usr/local --disable-test-cpp --disable-test-perf --disable-test-vald --disable-test-perf-proc --disable-test-example --disable-test-helper --enable-dpdk-zero-copy --disable-abi-compat
- make clean
- make
- make install
diff --git a/ofp_udp_fwd_socket/server/ofp_udp_fwd_socket_dpdk.yaml b/ofp_udp_fwd_socket/server/ofp_udp_fwd_socket_dpdk.yaml
index 1940ca7..19bd02d 100644
--- a/ofp_udp_fwd_socket/server/ofp_udp_fwd_socket_dpdk.yaml
+++ b/ofp_udp_fwd_socket/server/ofp_udp_fwd_socket_dpdk.yaml
@@ -19,7 +19,7 @@ params:
OFP_BRANCH_DFLT: master
OFP_CONFIG_FLV: default
DPDK_REPOSITORY: http://dpdk.org/git/dpdk
- DPDK_TAG: v17.08
+ DPDK_TAG: v17.11
DPDK_TARGET: x86_64-native-linuxapp-gcc
DPDK_DIR: dpdk
ODP_REPOSITORY_DFLT: https://github.com/Linaro/odp
@@ -68,7 +68,8 @@ install:
- cd $BUILD_DIR/$DPDK_DIR/$DPDK_TARGET
- sed -ri 's,(CONFIG_RTE_LIBRTE_PMD_PCAP=).*,\1y,' .config
- cd $BUILD_DIR/$DPDK_DIR
- - make install T=$DPDK_TARGET EXTRA_CFLAGS="-fPIC"
+ - make build O=$DPDK_TARGET EXTRA_CFLAGS="-fPIC"
+ - make install O=$DPDK_TARGET DESTDIR=$DPDK_TARGET
- cd $BUILD_DIR
- echo "Build ODP"
- ODP_REPOSITORY=${ODP_REPOSITORY:-${ODP_REPOSITORY_DFLT}}
@@ -81,7 +82,7 @@ install:
- git checkout -b test_perf origin/$ODP_BRANCH
- ./bootstrap || true
- autoreconf -i
- - ./configure --prefix=$ODP_INSTALL_DIR --with-dpdk-path=$BUILD_DIR/$DPDK_DIR/$DPDK_TARGET --disable-test-cpp --disable-test-perf --disable-test-vald --disable-test-perf-proc --disable-test-example --disable-test-helper --enable-dpdk-zero-copy --disable-abi-compat
+ - ./configure --prefix=$ODP_INSTALL_DIR --with-dpdk-path=$BUILD_DIR/$DPDK_DIR/$DPDK_TARGET/usr/local --disable-test-cpp --disable-test-perf --disable-test-vald --disable-test-perf-proc --disable-test-example --disable-test-helper --enable-dpdk-zero-copy --disable-abi-compat
- make clean
- make
- make install
diff --git a/ofp_webserver/server/ofp_webserver_dpdk_epoll.yaml b/ofp_webserver/server/ofp_webserver_dpdk_epoll.yaml
index 2fa186e..7639b75 100644
--- a/ofp_webserver/server/ofp_webserver_dpdk_epoll.yaml
+++ b/ofp_webserver/server/ofp_webserver_dpdk_epoll.yaml
@@ -22,7 +22,7 @@ params:
OFP_BRANCH_DFLT: master
OFP_CONFIG_FLV: webserver
DPDK_REPOSITORY: http://dpdk.org/git/dpdk
- DPDK_TAG: v17.08
+ DPDK_TAG: v17.11
DPDK_TARGET: x86_64-native-linuxapp-gcc
DPDK_DIR: dpdk
ODP_REPOSITORY_DFLT: https://github.com/Linaro/odp
@@ -70,7 +70,8 @@ install:
- cd $BUILD_DIR/$DPDK_DIR/$DPDK_TARGET
- sed -ri 's,(CONFIG_RTE_LIBRTE_PMD_PCAP=).*,\1y,' .config
- cd $BUILD_DIR/$DPDK_DIR
- - make install T=$DPDK_TARGET EXTRA_CFLAGS="-fPIC"
+ - make build O=$DPDK_TARGET EXTRA_CFLAGS="-fPIC"
+ - make install O=$DPDK_TARGET DESTDIR=$DPDK_TARGET
- cd $BUILD_DIR
- echo "Build ODP"
- ODP_REPOSITORY=${ODP_REPOSITORY:-${ODP_REPOSITORY_DFLT}}
@@ -83,7 +84,7 @@ install:
- git checkout -b test_perf origin/$ODP_BRANCH
- ./bootstrap || true
- autoreconf -i
- - ./configure --prefix=$ODP_INSTALL_DIR --with-dpdk-path=$BUILD_DIR/$DPDK_DIR/$DPDK_TARGET --disable-test-cpp --disable-test-perf --disable-test-vald --disable-test-perf-proc --disable-test-example --disable-test-helper --enable-dpdk-zero-copy --disable-abi-compat
+ - ./configure --prefix=$ODP_INSTALL_DIR --with-dpdk-path=$BUILD_DIR/$DPDK_DIR/$DPDK_TARGET/usr/local --disable-test-cpp --disable-test-perf --disable-test-vald --disable-test-perf-proc --disable-test-example --disable-test-helper --enable-dpdk-zero-copy --disable-abi-compat
- make clean
- make
- make install
diff --git a/ofp_webserver2/server/ofp_webserver2_dpdk.yaml b/ofp_webserver2/server/ofp_webserver2_dpdk.yaml
index 8086f8c..878022c 100644
--- a/ofp_webserver2/server/ofp_webserver2_dpdk.yaml
+++ b/ofp_webserver2/server/ofp_webserver2_dpdk.yaml
@@ -23,7 +23,7 @@ params:
OFP_BRANCH_DFLT: master
OFP_CONFIG_FLV: webserver
DPDK_REPOSITORY: http://dpdk.org/git/dpdk
- DPDK_TAG: v17.08
+ DPDK_TAG: v17.11
DPDK_TARGET: x86_64-native-linuxapp-gcc
DPDK_DIR: dpdk
ODP_REPOSITORY_DFLT: https://github.com/Linaro/odp
@@ -71,7 +71,8 @@ install:
- cd $BUILD_DIR/$DPDK_DIR/$DPDK_TARGET
- sed -ri 's,(CONFIG_RTE_LIBRTE_PMD_PCAP=).*,\1y,' .config
- cd $BUILD_DIR/$DPDK_DIR
- - make install T=$DPDK_TARGET EXTRA_CFLAGS="-fPIC"
+ - make build O=$DPDK_TARGET EXTRA_CFLAGS="-fPIC"
+ - make install O=$DPDK_TARGET DESTDIR=$DPDK_TARGET
- cd $BUILD_DIR
- echo "Build ODP"
- ODP_REPOSITORY=${ODP_REPOSITORY:-${ODP_REPOSITORY_DFLT}}
@@ -84,7 +85,7 @@ install:
- git checkout -b test_perf origin/$ODP_BRANCH
- ./bootstrap || true
- autoreconf -i
- - ./configure --prefix=$ODP_INSTALL_DIR --with-dpdk-path=$BUILD_DIR/$DPDK_DIR/$DPDK_TARGET --disable-test-cpp --disable-test-perf --disable-test-vald --disable-test-perf-proc --disable-test-example --disable-test-helper --enable-dpdk-zero-copy --disable-abi-compat
+ - ./configure --prefix=$ODP_INSTALL_DIR --with-dpdk-path=$BUILD_DIR/$DPDK_DIR/$DPDK_TARGET/usr/local --disable-test-cpp --disable-test-perf --disable-test-vald --disable-test-perf-proc --disable-test-example --disable-test-helper --enable-dpdk-zero-copy --disable-abi-compat
- make clean
- make
- make install