aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/m4/odp_dpdk.m4
diff options
context:
space:
mode:
Diffstat (limited to 'platform/linux-generic/m4/odp_dpdk.m4')
-rw-r--r--platform/linux-generic/m4/odp_dpdk.m49
1 files changed, 6 insertions, 3 deletions
diff --git a/platform/linux-generic/m4/odp_dpdk.m4 b/platform/linux-generic/m4/odp_dpdk.m4
index a7c775418..f8d985a64 100644
--- a/platform/linux-generic/m4/odp_dpdk.m4
+++ b/platform/linux-generic/m4/odp_dpdk.m4
@@ -4,12 +4,14 @@
pktio_dpdk_support=no
AC_ARG_ENABLE([dpdk],
- [AS_HELP_STRING([--enable-dpdk], [enable DPDK support for Packet I/O])],
+ [AS_HELP_STRING([--enable-dpdk],
+ [enable DPDK support for Packet I/O [default=disabled]])],
[pktio_dpdk_support=$enableval
DPDK_PATH=system])
AC_ARG_WITH([dpdk-path],
-[AS_HELP_STRING([--with-dpdk-path=DIR], [path to dpdk build directory])],
+[AS_HELP_STRING([--with-dpdk-path=DIR],
+ [path to dpdk build directory [default=system]])],
[DPDK_PATH="$withval"
pktio_dpdk_support=yes],[])
@@ -18,7 +20,8 @@ AC_ARG_WITH([dpdk-path],
##########################################################################
zero_copy=0
AC_ARG_ENABLE([dpdk-zero-copy],
- [AS_HELP_STRING([--enable-dpdk-zero-copy], [enable experimental zero-copy DPDK pktio mode])],
+ [AS_HELP_STRING([--enable-dpdk-zero-copy],
+ [enable experimental zero-copy DPDK pktio mode [default=disabled]])],
[if test x$enableval = xyes; then
zero_copy=1
fi])