aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/m4
diff options
context:
space:
mode:
authorStanislaw Kardach <skardach@marvell.com>2020-04-23 15:25:16 +0200
committerMatias Elo <matias.elo@nokia.com>2020-09-07 13:38:00 +0300
commitc4a1a70caef82a2d20d3d2fd4ff4bb22ab2d7188 (patch)
tree236d8f306a2818999ba1870d9b732762c3b62f42 /platform/linux-generic/m4
parent79138361418372dc1e9e6eb225a5b8a525d946c1 (diff)
linux-gen: mark plat-specific config arguments
Ensure that configure arguments which are specific to a platform are marked in the help strings as linux-generic. Signed-off-by: Stanislaw Kardach <skardach@marvell.com> Reviewed-by: Matias Elo <matias.elo@nokia.com>
Diffstat (limited to 'platform/linux-generic/m4')
-rw-r--r--platform/linux-generic/m4/configure.m42
-rw-r--r--platform/linux-generic/m4/odp_dpdk.m46
-rw-r--r--platform/linux-generic/m4/odp_netmap.m44
-rw-r--r--platform/linux-generic/m4/odp_pcapng.m42
-rw-r--r--platform/linux-generic/m4/odp_scheduler.m42
5 files changed, 8 insertions, 8 deletions
diff --git a/platform/linux-generic/m4/configure.m4 b/platform/linux-generic/m4/configure.m4
index be6d024e3..e26050e22 100644
--- a/platform/linux-generic/m4/configure.m4
+++ b/platform/linux-generic/m4/configure.m4
@@ -11,7 +11,7 @@ m4_include([platform/linux-generic/m4/odp_scheduler.m4])
AC_ARG_WITH([pcap],
[AS_HELP_STRING([--without-pcap],
- [compile without PCAP [default=with]])],
+ [compile without PCAP [default=with] (linux-generic)])],
[],
[with_pcap=yes])
have_pcap=no
diff --git a/platform/linux-generic/m4/odp_dpdk.m4 b/platform/linux-generic/m4/odp_dpdk.m4
index ded05eaf5..30c47d026 100644
--- a/platform/linux-generic/m4/odp_dpdk.m4
+++ b/platform/linux-generic/m4/odp_dpdk.m4
@@ -5,13 +5,13 @@ pktio_dpdk_support=no
AC_ARG_ENABLE([dpdk],
[AS_HELP_STRING([--enable-dpdk],
- [enable DPDK support for Packet I/O [default=disabled]])],
+ [enable DPDK support for Packet I/O [default=disabled] (linux-generic)])],
[pktio_dpdk_support=$enableval
DPDK_PATH=system])
AC_ARG_WITH([dpdk-path],
[AS_HELP_STRING([--with-dpdk-path=DIR],
- [path to DPDK build directory [default=system]])],
+ [path to DPDK build directory [default=system] (linux-generic)])],
[DPDK_PATH="$withval"
pktio_dpdk_support=yes],[])
@@ -21,7 +21,7 @@ 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 [default=disabled]])],
+ [enable experimental zero-copy DPDK pktio mode [default=disabled] (linux-generic)])],
[if test x$enableval = xyes; then
zero_copy=1
fi])
diff --git a/platform/linux-generic/m4/odp_netmap.m4 b/platform/linux-generic/m4/odp_netmap.m4
index 08bd4397b..7688c080e 100644
--- a/platform/linux-generic/m4/odp_netmap.m4
+++ b/platform/linux-generic/m4/odp_netmap.m4
@@ -4,7 +4,7 @@
netmap_support=no
AC_ARG_ENABLE([netmap_support],
[AS_HELP_STRING([--enable-netmap-support], [include netmap IO support]
- [[default=disabled]])],
+ [[default=disabled] (linux-generic)])],
[if test x$enableval = xyes; then
netmap_support=yes
fi])
@@ -14,7 +14,7 @@ AC_ARG_ENABLE([netmap_support],
##########################################################################
AC_ARG_WITH([netmap-path],
AS_HELP_STRING([--with-netmap-path=DIR], [path to netmap root directory]
- [[default=system]]),
+ [[default=system] (linux-generic)]),
[NETMAP_PATH=$withval
NETMAP_CPPFLAGS="-isystem $NETMAP_PATH/sys"
netmap_support=yes],[])
diff --git a/platform/linux-generic/m4/odp_pcapng.m4 b/platform/linux-generic/m4/odp_pcapng.m4
index af4d41f65..6ad92db88 100644
--- a/platform/linux-generic/m4/odp_pcapng.m4
+++ b/platform/linux-generic/m4/odp_pcapng.m4
@@ -6,7 +6,7 @@ pcapng_support=0
AC_ARG_ENABLE([pcapng-support],
[AS_HELP_STRING([--enable-pcapng-support],
- [enable experimental tcpdump for pktios [default=disabled]])],
+ [enable experimental tcpdump for pktios [default=disabled] (linux-generic)])],
have_pcapng=$enableval
[if test x$enableval = xyes; then
pcapng_support=1
diff --git a/platform/linux-generic/m4/odp_scheduler.m4 b/platform/linux-generic/m4/odp_scheduler.m4
index 710f49a8b..c199ceed5 100644
--- a/platform/linux-generic/m4/odp_scheduler.m4
+++ b/platform/linux-generic/m4/odp_scheduler.m4
@@ -4,7 +4,7 @@
AC_DEFUN([ODP_SCHEDULER], [dnl
AC_ARG_ENABLE([scheduler-default],
[AS_HELP_STRING([--enable-scheduler-default],
- [choose default scheduler [default=basic]])],
+ [choose default scheduler [default=basic] (linux-generic)])],
[], [enable_scheduler_default=basic])
AC_DEFINE_UNQUOTED([_ODP_SCHEDULE_DEFAULT], ["$enable_scheduler_default"],
[Define to name default scheduler])