dpdk: update the dpdk submodule to v18.08

Also use the DPDK's default T=x86_64-native-* configuration
target instead of T=spdk-*, as the T=spdk-* is no longer
available in spdk-18.08 branch of our DPDK fork.

Change-Id: If12e7ae1acabece129b63ba2f1bec6b0b65678ca
Signed-off-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com>
Reviewed-on: https://review.gerrithub.io/423053
Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com>
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
This commit is contained in:
Darek Stojaczyk 2018-10-04 13:24:38 +02:00 committed by Ben Walker
parent 1f07840b10
commit 9e6558746f
3 changed files with 3 additions and 3 deletions

2
configure vendored
View File

@ -270,7 +270,7 @@ if [ -z "${CONFIG[ENV]}" ]; then
CONFIG[ENV]=$rootdir/lib/env_dpdk
echo "Using default SPDK env in ${CONFIG[ENV]}"
if [ -z "${CONFIG[DPDK_DIR]}" ]; then
if [ ! -f "$rootdir"/dpdk/config/common_spdk ]; then
if [ ! -f "$rootdir"/dpdk/config/common_base ]; then
echo "DPDK not found; please specify --with-dpdk=<path> or run:"
echo
echo " git submodule update --init"

2
dpdk

@ -1 +1 @@
Subproject commit 581b5fc8c2793666a4b705e95179637149913105
Subproject commit 812c579bd2167a736d5f0e7f9ea74c6487ccfb7c

View File

@ -72,7 +72,7 @@ endif
ifeq ($(TARGET_MACHINE),aarch64)
DPDK_CONFIG := arm64-armv8a
else
DPDK_CONFIG := spdk
DPDK_CONFIG := $(TARGET_MACHINE)-native
endif
ifeq ($(OS),Linux)