From: David Marchand <david.marchand@redhat.com>
To: Thomas Monjalon <thomas@monjalon.net>
Cc: dev <dev@dpdk.org>, Jerin Jacob <jerinj@marvell.com>,
Viacheslav Ovsiienko <viacheslavo@mellanox.com>,
Maxime Coquelin <maxime.coquelin@redhat.com>,
Matan Azrad <matan@mellanox.com>, Gavin Hu <gavin.hu@arm.com>,
Pavan Nikhilesh <pbhagavatula@marvell.com>,
Konstantin Ananyev <konstantin.ananyev@intel.com>,
Phil Yang <phil.yang@arm.com>
Subject: Re: [dpdk-dev] [PATCH 2/2] devtools: enable more config options in build test
Date: Wed, 12 Feb 2020 11:00:58 +0100 [thread overview]
Message-ID: <CAJFAV8x-kDCKVmyxsJ63hk9TAZwfWLsBSiWFyOM3v3wFqDFamw@mail.gmail.com> (raw)
In-Reply-To: <20200211235724.2970097-3-thomas@monjalon.net>
On Wed, Feb 12, 2020 at 12:57 AM Thomas Monjalon <thomas@monjalon.net> wrote:
>
> The Linux kernel modules kni and igb_uio were disabled by default
> so they need a new option (+kmods) for testing compilation.
>
> Some recent features were not enabled in compilation testing:
> - mlx5 vDPA (depends on libibverbs)
> - ifpga (depends on libfdt)
> - ipn3ke (depends on libfdt)
> - Arm WFE
>
> Check on libfdt availability is added, and not considered as a fix.
>
> Fixes: 91a861e54164 ("config: disable Linux kernel modules by default")
> Fixes: 95276abaaf0a ("vdpa/mlx5: introduce Mellanox vDPA driver")
> Fixes: 1be7855d7739 ("eal: add wait until equal API")
>
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
> ---
> devtools/test-build.sh | 12 +++++++++++-
> 1 file changed, 11 insertions(+), 1 deletion(-)
>
> diff --git a/devtools/test-build.sh b/devtools/test-build.sh
> index 330133e692..e6e40588c6 100755
> --- a/devtools/test-build.sh
> +++ b/devtools/test-build.sh
> @@ -14,6 +14,7 @@ default_path=$PATH
> # - DPDK_DEP_BPF (y/[n])
> # - DPDK_DEP_CFLAGS
> # - DPDK_DEP_ELF (y/[n])
> +# - DPDK_DEP_FDT (y/[n])
> # - DPDK_DEP_ISAL (y/[n])
> # - DPDK_DEP_JSON (y/[n])
> # - DPDK_DEP_LDFLAGS
> @@ -108,6 +109,7 @@ reset_env ()
> unset DPDK_DEP_BPF
> unset DPDK_DEP_CFLAGS
> unset DPDK_DEP_ELF
> + unset DPDK_DEP_FDT
> unset DPDK_DEP_ISAL
> unset DPDK_DEP_JSON
> unset DPDK_DEP_LDFLAGS
> @@ -140,6 +142,8 @@ config () # <directory> <target> <options>
> # Built-in options (lowercase)
> ! echo $3 | grep -q '+default' || \
> sed -ri="" 's,(RTE_MACHINE=")native,\1default,' $1/.config
> + ! echo $3 | grep -q '+kmods' || \
> + sed -ri="" 's,(IGB_UIO=|KNI_KMOD=)n,\1y,' $1/.config
> echo $3 | grep -q '+next' || \
> sed -ri="" 's,(NEXT_ABI=)y,\1n,' $1/.config
> ! echo $3 | grep -q '+shared' || \
> @@ -151,6 +155,8 @@ config () # <directory> <target> <options>
> sed -ri="" 's,(TEST_PMD_RECORD_.*=)n,\1y,' $1/.config )
>
> # Automatic configuration
> + ! echo $2 | grep -q 'arm64' || \
> + sed -ri="" 's,(ARM_USE_WFE=)n,\1y,' $1/.config
> test "$DPDK_DEP_NUMA" != n || \
> sed -ri="" 's,(NUMA.*=)y,\1n,' $1/.config
> sed -ri="" 's,(LIBRTE_IEEE1588=)n,\1y,' $1/.config
> @@ -159,10 +165,14 @@ config () # <directory> <target> <options>
> sed -ri="" 's,(RESOURCE_TAR=)n,\1y,' $1/.config
> test "$DPDK_DEP_BPF" != y || \
> sed -ri="" 's,(PMD_AF_XDP=)n,\1y,' $1/.config
> + test "$DPDK_DEP_FDT" != y || \
> + sed -ri="" 's,(PMD_IFPGA_RAWDEV=)n,\1y,' $1/.config
> + test "$DPDK_DEP_FDT" != y || \
> + sed -ri="" 's,(IPN3KE_PMD=)n,\1y,' $1/.config
> test "$DPDK_DEP_ISAL" != y || \
> sed -ri="" 's,(PMD_ISAL=)n,\1y,' $1/.config
> test "$DPDK_DEP_MLX" != y || \
> - sed -ri="" 's,(MLX._PMD=)n,\1y,' $1/.config
> + sed -ri="" 's,(MLX.*_PMD=)n,\1y,' $1/.config
> test "$DPDK_DEP_NFB" != y || \
> sed -ri="" 's,(NFB_PMD=)n,\1y,' $1/.config
> test "$DPDK_DEP_SZE" != y || \
> --
> 2.25.0
>
Acked-by: David Marchand <david.marchand@redhat.com>
--
David Marchand
next prev parent reply other threads:[~2020-02-12 10:01 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-11 23:57 [dpdk-dev] [PATCH 0/2] cleanup makefile config and testing Thomas Monjalon
2020-02-11 23:57 ` [dpdk-dev] [PATCH 1/2] config: deduplicate options Thomas Monjalon
2020-02-12 9:39 ` David Marchand
2020-02-11 23:57 ` [dpdk-dev] [PATCH 2/2] devtools: enable more config options in build test Thomas Monjalon
2020-02-12 10:00 ` David Marchand [this message]
2020-02-12 10:31 ` [dpdk-dev] [PATCH 0/2] cleanup makefile config and testing David Marchand
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAJFAV8x-kDCKVmyxsJ63hk9TAZwfWLsBSiWFyOM3v3wFqDFamw@mail.gmail.com \
--to=david.marchand@redhat.com \
--cc=dev@dpdk.org \
--cc=gavin.hu@arm.com \
--cc=jerinj@marvell.com \
--cc=konstantin.ananyev@intel.com \
--cc=matan@mellanox.com \
--cc=maxime.coquelin@redhat.com \
--cc=pbhagavatula@marvell.com \
--cc=phil.yang@arm.com \
--cc=thomas@monjalon.net \
--cc=viacheslavo@mellanox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).