DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ciara Power <ciara.power@intel.com>
To: dev@dpdk.org
Cc: Ciara Power <ciara.power@intel.com>,
	Declan Doherty <declan.doherty@intel.com>,
	Pablo de Lara <pablo.de.lara.guarch@intel.com>,
	John McNamara <john.mcnamara@intel.com>,
	Marko Kovacevic <marko.kovacevic@intel.com>,
	Ruifeng Wang <ruifeng.wang@arm.com>,
	Gagandeep Singh <g.singh@nxp.com>,
	Hemant Agrawal <hemant.agrawal@nxp.com>,
	Somalapuram Amaranath <asomalap@amd.com>,
	Akhil Goyal <akhil.goyal@nxp.com>,
	Michael Shamis <michaelsh@marvell.com>,
	Liron Himi <lironh@marvell.com>,
	Nagadheeraj Rottela <rnagadheeraj@marvell.com>,
	Srikanth Jampala <jsrikanth@marvell.com>,
	Anoob Joseph <anoobj@marvell.com>,
	Ankur Dwivedi <adwivedi@marvell.com>,
	John Griffin <john.griffin@intel.com>,
	Fiona Trahe <fiona.trahe@intel.com>,
	Deepak Kumar Jain <deepak.k.jain@intel.com>,
	Fan Zhang <roy.fan.zhang@intel.com>,
	Jay Zhou <jianjay.zhou@huawei.com>
Subject: [dpdk-dev] [PATCH v3 23/37] doc: remove references to make in cryptodev guides
Date: Thu,  3 Sep 2020 16:27:03 +0100	[thread overview]
Message-ID: <20200903152717.42095-24-ciara.power@intel.com> (raw)
In-Reply-To: <20200903152717.42095-1-ciara.power@intel.com>

Make is no longer supported for compiling DPDK, references are now
removed in the documentation.

Signed-off-by: Ciara Power <ciara.power@intel.com>
Reviewed-by: Kevin Laatz <kevin.laatz@intel.com>
---
 doc/guides/cryptodevs/aesni_gcm.rst |  4 +-
 doc/guides/cryptodevs/aesni_mb.rst  |  4 +-
 doc/guides/cryptodevs/armv8.rst     |  3 --
 doc/guides/cryptodevs/caam_jr.rst   | 30 -------------
 doc/guides/cryptodevs/ccp.rst       | 14 +++---
 doc/guides/cryptodevs/dpaa2_sec.rst | 25 -----------
 doc/guides/cryptodevs/dpaa_sec.rst  | 25 -----------
 doc/guides/cryptodevs/kasumi.rst    | 11 +----
 doc/guides/cryptodevs/mvsam.rst     | 10 +----
 doc/guides/cryptodevs/nitrox.rst    |  7 ---
 doc/guides/cryptodevs/null.rst      |  2 +-
 doc/guides/cryptodevs/octeontx.rst  | 12 +-----
 doc/guides/cryptodevs/octeontx2.rst |  8 +---
 doc/guides/cryptodevs/openssl.rst   |  6 +--
 doc/guides/cryptodevs/qat.rst       | 67 +++++++----------------------
 doc/guides/cryptodevs/scheduler.rst |  8 ----
 doc/guides/cryptodevs/snow3g.rst    | 10 +----
 doc/guides/cryptodevs/virtio.rst    | 20 +++------
 doc/guides/cryptodevs/zuc.rst       | 10 +----
 19 files changed, 40 insertions(+), 236 deletions(-)

diff --git a/doc/guides/cryptodevs/aesni_gcm.rst b/doc/guides/cryptodevs/aesni_gcm.rst
index 74e0de63ad..013615e2d0 100644
--- a/doc/guides/cryptodevs/aesni_gcm.rst
+++ b/doc/guides/cryptodevs/aesni_gcm.rst
@@ -96,8 +96,6 @@ In order to enable this virtual crypto PMD, user must:
 
 * Build the multi buffer library (explained in Installation section).
 
-* Set CONFIG_RTE_LIBRTE_PMD_AESNI_GCM=y in config/common_base.
-
 To use the PMD in an application, user must:
 
 * Call rte_vdev_init("crypto_aesni_gcm") within the application.
@@ -117,5 +115,5 @@ Example:
 
 .. code-block:: console
 
-    ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_aesni_gcm,socket_id=0,max_nb_sessions=128" \
+    ./dpdk-l2fwd-crypto -l 1 -n 4 --vdev="crypto_aesni_gcm,socket_id=0,max_nb_sessions=128" \
     -- -p 1 --cdev SW --chain AEAD --aead_algo "aes-gcm"
diff --git a/doc/guides/cryptodevs/aesni_mb.rst b/doc/guides/cryptodevs/aesni_mb.rst
index 15388d20ab..fd533ca65b 100644
--- a/doc/guides/cryptodevs/aesni_mb.rst
+++ b/doc/guides/cryptodevs/aesni_mb.rst
@@ -131,8 +131,6 @@ In order to enable this virtual crypto PMD, user must:
 
 * Build the multi buffer library (explained in Installation section).
 
-* Set CONFIG_RTE_LIBRTE_PMD_AESNI_MB=y in config/common_base.
-
 To use the PMD in an application, user must:
 
 * Call rte_vdev_init("crypto_aesni_mb") within the application.
@@ -152,7 +150,7 @@ Example:
 
 .. code-block:: console
 
-    ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_aesni_mb,socket_id=0,max_nb_sessions=128" \
+    ./dpdk-l2fwd-crypto -l 1 -n 4 --vdev="crypto_aesni_mb,socket_id=0,max_nb_sessions=128" \
     -- -p 1 --cdev SW --chain CIPHER_HASH --cipher_algo "aes-cbc" --auth_algo "sha1-hmac"
 
 Extra notes
diff --git a/doc/guides/cryptodevs/armv8.rst b/doc/guides/cryptodevs/armv8.rst
index fee85354ba..d30ef6168e 100644
--- a/doc/guides/cryptodevs/armv8.rst
+++ b/doc/guides/cryptodevs/armv8.rst
@@ -40,9 +40,6 @@ In order to enable this virtual crypto PMD, user must:
 
 	make -C $ARMV8_CRYPTO_LIB_PATH/
 
-* Set CONFIG_RTE_LIBRTE_PMD_ARMV8_CRYPTO=y in
-  config/defconfig_arm64-armv8a-linux-gcc
-
 The corresponding device can be created only if the following features
 are supported by the CPU:
 
diff --git a/doc/guides/cryptodevs/caam_jr.rst b/doc/guides/cryptodevs/caam_jr.rst
index 6d9daf7364..5ef33ae78e 100644
--- a/doc/guides/cryptodevs/caam_jr.rst
+++ b/doc/guides/cryptodevs/caam_jr.rst
@@ -109,36 +109,6 @@ Currently supported by DPDK:
 
 * Follow the DPDK :ref:`Getting Started Guide for Linux <linux_gsg>` to setup the basic DPDK environment.
 
-Pre-Installation Configuration
-------------------------------
-
-Config File Options
-~~~~~~~~~~~~~~~~~~~
-
-The following options can be modified in the ``config`` file
-to enable caam_jr PMD.
-
-Please note that enabling debugging options may affect system performance.
-
-* ``CONFIG_RTE_LIBRTE_PMD_CAAM_JR`` (default ``n``)
-  By default it is only enabled in common_linux config.
-  Toggle compilation of the ``librte_pmd_caam_jr`` driver.
-
-* ``CONFIG_RTE_LIBRTE_PMD_CAAM_JR_BE`` (default ``n``)
-  By default it is disabled.
-  It can be used when the underlying hardware supports the CAAM in BE mode.
-  LS1043A, LS1046A and LS1012A support CAAM in BE mode.
-  LS1028A supports CAAM in LE mode.
-
-Installations
--------------
-To compile the caam_jr PMD for Linux arm64 gcc target, run the
-following ``make`` command:
-
-.. code-block:: console
-
-   cd <DPDK-source-directory>
-   make config T=arm64-armv8a-linux-gcc install
 
 Enabling logs
 -------------
diff --git a/doc/guides/cryptodevs/ccp.rst b/doc/guides/cryptodevs/ccp.rst
index a43fe92de9..9ca1979994 100644
--- a/doc/guides/cryptodevs/ccp.rst
+++ b/doc/guides/cryptodevs/ccp.rst
@@ -56,10 +56,8 @@ AEAD algorithms:
 Installation
 ------------
 
-To compile ccp PMD, it has to be enabled in the config/common_base file and openssl
-packages have to be installed in the build environment.
-
-* ``CONFIG_RTE_LIBRTE_PMD_CCP=y``
+To compile ccp PMD, openssl packages have to be installed in the build
+environment.
 
 For Ubuntu 16.04 LTS use below to install openssl in the build system:
 
@@ -77,7 +75,7 @@ e.g. for the 0x1456 device::
 
 	cd to the top-level DPDK directory
 	modprobe uio
-	insmod ./build/kmod/igb_uio.ko
+	insmod ./<build_dir>/kernel/linux/igb_uio/igb_uio.ko
 	echo "1022 1456" > /sys/bus/pci/drivers/igb_uio/new_id
 
 Another way to bind the CCP devices to DPDK UIO driver is by using the ``dpdk-devbind.py`` script.
@@ -86,8 +84,6 @@ The following command assumes ``BFD`` as ``0000:09:00.2``::
 	cd to the top-level DPDK directory
 	./usertools/dpdk-devbind.py -b igb_uio 0000:09:00.2
 
-In order to enable the ccp crypto PMD, user must set CONFIG_RTE_LIBRTE_PMD_CCP=y in config/common_base.
-
 To use the PMD in an application, user must:
 
 * Call rte_vdev_init("crypto_ccp") within the application.
@@ -109,7 +105,7 @@ To validate ccp pmd, l2fwd-crypto example can be used with following command:
 
 .. code-block:: console
 
-        sudo ./build/l2fwd-crypto -l 1 -n 4 --vdev "crypto_ccp" -- -p 0x1
+        sudo ./<build_dir>/examples/dpdk-l2fwd-crypto -l 1 -n 4 --vdev "crypto_ccp" -- -p 0x1
         --chain CIPHER_HASH --cipher_op ENCRYPT --cipher_algo aes-cbc
         --cipher_key 00:01:02:03:04:05:06:07:08:09:0a:0b:0c:0d:0e:0f
         --cipher_iv 00:01:02:03:04:05:06:07:08:09:0a:0b:0c:0d:0e:ff
@@ -124,7 +120,7 @@ following:
 
 .. code-block:: console
 
-        sudo ./build/l2fwd-crypto -l 1 -n 4 --vdev "crypto_ccp,ccp_auth_opt=1" -- -p 0x1
+        sudo ./<build_dir>/examples/dpdk-l2fwd-crypto -l 1 -n 4 --vdev "crypto_ccp,ccp_auth_opt=1" -- -p 0x1
         --chain CIPHER_HASH --cipher_op ENCRYPT --cipher_algo aes-cbc
         --cipher_key 00:01:02:03:04:05:06:07:08:09:0a:0b:0c:0d:0e:0f
         --cipher_iv 00:01:02:03:04:05:06:07:08:09:0a:0b:0c:0d:0e:ff
diff --git a/doc/guides/cryptodevs/dpaa2_sec.rst b/doc/guides/cryptodevs/dpaa2_sec.rst
index 3053636b82..080768a2e7 100644
--- a/doc/guides/cryptodevs/dpaa2_sec.rst
+++ b/doc/guides/cryptodevs/dpaa2_sec.rst
@@ -167,31 +167,6 @@ Currently supported by DPDK:
 
 - Follow the DPDK :ref:`Getting Started Guide for Linux <linux_gsg>` to setup the basic DPDK environment.
 
-Pre-Installation Configuration
-------------------------------
-
-Config File Options
-~~~~~~~~~~~~~~~~~~~
-
-Basic DPAA2 config file options are described in :ref:`dpaa2_overview`.
-In addition to those, the following options can be modified in the ``config`` file
-to enable DPAA2_SEC PMD.
-
-Please note that enabling debugging options may affect system performance.
-
-* ``CONFIG_RTE_LIBRTE_PMD_DPAA2_SEC`` (default ``n``)
-  By default it is only enabled in defconfig_arm64-dpaa-* config.
-  Toggle compilation of the ``librte_pmd_dpaa2_sec`` driver.
-
-Installations
--------------
-To compile the DPAA2_SEC PMD for Linux arm64 gcc target, run the
-following ``make`` command:
-
-.. code-block:: console
-
-   cd <DPDK-source-directory>
-   make config T=arm64-dpaa-linux-gcc install
 
 Enabling logs
 -------------
diff --git a/doc/guides/cryptodevs/dpaa_sec.rst b/doc/guides/cryptodevs/dpaa_sec.rst
index db3c8e9189..da14a68d9c 100644
--- a/doc/guides/cryptodevs/dpaa_sec.rst
+++ b/doc/guides/cryptodevs/dpaa_sec.rst
@@ -111,31 +111,6 @@ See :doc:`../platform/dpaa` for setup information
 
 - Follow the DPDK :ref:`Getting Started Guide for Linux <linux_gsg>` to setup the basic DPDK environment.
 
-Pre-Installation Configuration
-------------------------------
-
-Config File Options
-~~~~~~~~~~~~~~~~~~~
-
-Basic DPAA config file options are described in :ref:`dpaa_overview`.
-In addition to those, the following options can be modified in the ``config`` file
-to enable DPAA_SEC PMD.
-
-Please note that enabling debugging options may affect system performance.
-
-* ``CONFIG_RTE_LIBRTE_PMD_DPAA_SEC`` (default ``n``)
-  By default it is only enabled in defconfig_arm64-dpaa-* config.
-  Toggle compilation of the ``librte_pmd_dpaa_sec`` driver.
-
-Installations
--------------
-To compile the DPAA_SEC PMD for Linux arm64 gcc target, run the
-following ``make`` command:
-
-.. code-block:: console
-
-   cd <DPDK-source-directory>
-   make config T=arm64-dpaa-linux-gcc install
 
 Enabling logs
 -------------
diff --git a/doc/guides/cryptodevs/kasumi.rst b/doc/guides/cryptodevs/kasumi.rst
index 09a538f816..5770a60cb2 100644
--- a/doc/guides/cryptodevs/kasumi.rst
+++ b/doc/guides/cryptodevs/kasumi.rst
@@ -89,15 +89,6 @@ In order to enable this virtual crypto PMD, user must:
 
 * Build the multi buffer library (explained in Installation section).
 
-* Build DPDK as follows:
-
-.. code-block:: console
-
-	make config T=x86_64-native-linux-gcc
-	sed -i 's,\(CONFIG_RTE_LIBRTE_PMD_KASUMI\)=n,\1=y,' build/.config
-	make
-
-
 To use the PMD in an application, user must:
 
 * Call rte_vdev_init("crypto_kasumi") within the application.
@@ -117,7 +108,7 @@ Example:
 
 .. code-block:: console
 
-    ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_kasumi,socket_id=0,max_nb_sessions=128" \
+    ./dpdk-l2fwd-crypto -l 1 -n 4 --vdev="crypto_kasumi,socket_id=0,max_nb_sessions=128" \
     -- -p 1 --cdev SW --chain CIPHER_ONLY --cipher_algo "kasumi-f8"
 
 Extra notes on KASUMI F9
diff --git a/doc/guides/cryptodevs/mvsam.rst b/doc/guides/cryptodevs/mvsam.rst
index 399fe37a67..6188c1248c 100644
--- a/doc/guides/cryptodevs/mvsam.rst
+++ b/doc/guides/cryptodevs/mvsam.rst
@@ -64,14 +64,6 @@ Limitations
 Installation
 ------------
 
-MVSAM CRYPTO PMD driver compilation is disabled by default due to external dependencies.
-Currently there are two driver specific compilation options in
-``config/common_base`` available:
-
-- ``CONFIG_RTE_LIBRTE_PMD_MVSAM_CRYPTO`` (default: ``n``)
-
-    Toggle compilation of the librte_pmd_mvsam driver.
-
 MVSAM CRYPTO PMD requires MUSDK built with EIP197 support thus following
 extra option must be passed to the library configuration script:
 
@@ -105,7 +97,7 @@ operation:
 
 .. code-block:: console
 
-   ./l2fwd-crypto --vdev=eth_mvpp2,iface=eth0 --vdev=crypto_mvsam -- \
+   ./dpdk-l2fwd-crypto --vdev=eth_mvpp2,iface=eth0 --vdev=crypto_mvsam -- \
      --cipher_op ENCRYPT --cipher_algo aes-cbc \
      --cipher_key 00:01:02:03:04:05:06:07:08:09:0a:0b:0c:0d:0e:0f  \
      --auth_op GENERATE --auth_algo sha1-hmac \
diff --git a/doc/guides/cryptodevs/nitrox.rst b/doc/guides/cryptodevs/nitrox.rst
index 85f5212b64..2f0565b49e 100644
--- a/doc/guides/cryptodevs/nitrox.rst
+++ b/doc/guides/cryptodevs/nitrox.rst
@@ -33,13 +33,6 @@ Limitations
 * 3DES Cipher Only combination is not supported.
 * Session-less APIs are not supported.
 
-Installation
-------------
-
-For compiling the Nitrox crypto PMD, please check if the
-CONFIG_RTE_LIBRTE_PMD_NITROX setting is set to `y` in config/common_base file.
-
-* ``CONFIG_RTE_LIBRTE_PMD_NITROX=y``
 
 Initialization
 --------------
diff --git a/doc/guides/cryptodevs/null.rst b/doc/guides/cryptodevs/null.rst
index c980e0ac84..aac5904b1d 100644
--- a/doc/guides/cryptodevs/null.rst
+++ b/doc/guides/cryptodevs/null.rst
@@ -67,5 +67,5 @@ Example:
 
 .. code-block:: console
 
-    ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_null,socket_id=0,max_nb_sessions=128" \
+    ./dpdk-l2fwd-crypto -l 1 -n 4 --vdev="crypto_null,socket_id=0,max_nb_sessions=128" \
     -- -p 1 --cdev SW --chain CIPHER_ONLY --cipher_algo "null"
diff --git a/doc/guides/cryptodevs/octeontx.rst b/doc/guides/cryptodevs/octeontx.rst
index 4fa199e3c4..d813cb2974 100644
--- a/doc/guides/cryptodevs/octeontx.rst
+++ b/doc/guides/cryptodevs/octeontx.rst
@@ -59,14 +59,6 @@ Supported Asymmetric Crypto Algorithms
 * ``RTE_CRYPTO_ASYM_XFORM_RSA``
 * ``RTE_CRYPTO_ASYM_XFORM_MODEX``
 
-Config flags
-------------
-
-For compiling the OCTEON TX crypto poll mode driver, please check if the
-CONFIG_RTE_LIBRTE_PMD_OCTEONTX_CRYPTO setting is set to `y` in
-config/common_base file.
-
-* ``CONFIG_RTE_LIBRTE_PMD_OCTEONTX_CRYPTO=y``
 
 Compilation
 -----------
@@ -135,7 +127,7 @@ application:
 
 .. code-block:: console
 
-        ./test
+        ./dpdk-test
         RTE>>cryptodev_octeontx_autotest
 
 The asymmetric crypto operations on OCTEON TX crypto PMD may be verified by running the test
@@ -143,5 +135,5 @@ application:
 
 .. code-block:: console
 
-        ./test
+        ./dpdk-test
         RTE>>cryptodev_octeontx_asym_autotest
diff --git a/doc/guides/cryptodevs/octeontx2.rst b/doc/guides/cryptodevs/octeontx2.rst
index 432146db04..bb4af3a04d 100644
--- a/doc/guides/cryptodevs/octeontx2.rst
+++ b/doc/guides/cryptodevs/octeontx2.rst
@@ -70,10 +70,6 @@ Installation
 The OCTEON TX2 crypto PMD may be compiled natively on an OCTEON TX2 platform or
 cross-compiled on an x86 platform.
 
-Enable OCTEON TX2 crypto PMD in your config file:
-
-* ``CONFIG_RTE_LIBRTE_PMD_OCTEONTX2_CRYPTO=y``
-
 Refer to :doc:`../platform/octeontx2` for instructions to build your DPDK
 application.
 
@@ -148,7 +144,7 @@ application:
 
 .. code-block:: console
 
-    ./test
+    ./dpdk-test
     RTE>>cryptodev_octeontx2_autotest
 
 The asymmetric crypto operations on OCTEON TX2 crypto PMD may be verified by running the test
@@ -156,7 +152,7 @@ application:
 
 .. code-block:: console
 
-    ./test
+    ./dpdk-test
     RTE>>cryptodev_octeontx2_asym_autotest
 
 
diff --git a/doc/guides/cryptodevs/openssl.rst b/doc/guides/cryptodevs/openssl.rst
index 7407294813..ca0f0b43f3 100644
--- a/doc/guides/cryptodevs/openssl.rst
+++ b/doc/guides/cryptodevs/openssl.rst
@@ -58,8 +58,8 @@ Supported Asymmetric Crypto algorithms:
 Installation
 ------------
 
-To compile openssl PMD, it has to be enabled in the config/common_base file
-and appropriate openssl packages have to be installed in the build environment.
+To compile openssl PMD, appropriate openssl packages have to be installed
+in the build environment.
 
 The newest openssl library version is supported:
 
@@ -93,7 +93,7 @@ To verify real traffic l2fwd-crypto example can be used with this command:
 
 .. code-block:: console
 
-	sudo ./build/l2fwd-crypto -l 0-1 -n 4 --vdev "crypto_openssl"
+	sudo ./<build_dir>/examples/dpdk-l2fwd-crypto -l 0-1 -n 4 --vdev "crypto_openssl"
 	--vdev "crypto_openssl"-- -p 0x3 --chain CIPHER_HASH
 	--cipher_op ENCRYPT --cipher_algo AES_CBC
 	--cipher_key 00:01:02:03:04:05:06:07:08:09:0a:0b:0c:0d:0e:0f
diff --git a/doc/guides/cryptodevs/qat.rst b/doc/guides/cryptodevs/qat.rst
index e5d2cf4997..6714a7a8a2 100644
--- a/doc/guides/cryptodevs/qat.rst
+++ b/doc/guides/cryptodevs/qat.rst
@@ -207,27 +207,6 @@ Configuring and Building the DPDK QAT PMDs
 Further information on configuring, building and installing DPDK is described
 :doc:`here <../linux_gsg/build_dpdk>`.
 
-
-Quick instructions for QAT cryptodev PMD are as follows:
-
-.. code-block:: console
-
-	cd to the top-level DPDK directory
-	make defconfig
-	sed -i 's,\(CONFIG_RTE_LIBRTE_PMD_QAT_SYM\)=n,\1=y,' build/.config
-	or/and
-	sed -i 's,\(CONFIG_RTE_LIBRTE_PMD_QAT_ASYM\)=n,\1=y,' build/.config
-	make
-
-Quick instructions for QAT compressdev PMD are as follows:
-
-.. code-block:: console
-
-	cd to the top-level DPDK directory
-	make defconfig
-	make
-
-
 .. _building_qat_config:
 
 Build Configuration
@@ -237,38 +216,32 @@ These are the build configuration options affecting QAT, and their default value
 
 .. code-block:: console
 
-	CONFIG_RTE_LIBRTE_PMD_QAT=y
-	CONFIG_RTE_LIBRTE_PMD_QAT_SYM=n
-	CONFIG_RTE_LIBRTE_PMD_QAT_ASYM=n
-	CONFIG_RTE_PMD_QAT_MAX_PCI_DEVICES=48
-	CONFIG_RTE_PMD_QAT_COMP_IM_BUFFER_SIZE=65536
-
-CONFIG_RTE_LIBRTE_PMD_QAT must be enabled for any QAT PMD to be built.
+	RTE_PMD_QAT_MAX_PCI_DEVICES=48
+	RTE_PMD_QAT_COMP_IM_BUFFER_SIZE=65536
 
 Both QAT SYM PMD and QAT ASYM PMD have an external dependency on libcrypto, so are not
-built by default. CONFIG_RTE_LIBRTE_PMD_QAT_SYM/ASYM should be enabled to build them.
+built by default.
 
-The QAT compressdev PMD has no external dependencies, so needs no configuration
-options and is built by default.
+The QAT compressdev PMD has no external dependencies, so is built by default.
 
 The number of VFs per PF varies - see table below. If multiple QAT packages are
-installed on a platform then CONFIG_RTE_PMD_QAT_MAX_PCI_DEVICES should be
+installed on a platform then RTE_PMD_QAT_MAX_PCI_DEVICES should be
 adjusted to the number of VFs which the QAT common code will need to handle.
 
 .. Note::
 
         There are separate config items (not QAT-specific) for max cryptodevs
-        CONFIG_RTE_CRYPTO_MAX_DEVS and max compressdevs CONFIG_RTE_COMPRESS_MAX_DEVS,
+        RTE_CRYPTO_MAX_DEVS and max compressdevs RTE_COMPRESS_MAX_DEVS,
         if necessary these should be adjusted to handle the total of QAT and other
         devices which the process will use. In particular for crypto, where each
         QAT VF may expose two crypto devices, sym and asym, it may happen that the
         number of devices will be bigger than MAX_DEVS and the process will show an error
-        during PMD initialisation. To avoid this problem CONFIG_RTE_CRYPTO_MAX_DEVS may be
+        during PMD initialisation. To avoid this problem RTE_CRYPTO_MAX_DEVS may be
         increased or -w, pci-whitelist domain:bus:devid:func option may be used.
 
 
 QAT compression PMD needs intermediate buffers to support Deflate compression
-with Dynamic Huffman encoding. CONFIG_RTE_PMD_QAT_COMP_IM_BUFFER_SIZE
+with Dynamic Huffman encoding. RTE_PMD_QAT_COMP_IM_BUFFER_SIZE
 specifies the size of a single buffer, the PMD will allocate a multiple of these,
 plus some extra space for associated meta-data. For GEN2 devices, 20 buffers are
 allocated while for GEN1 devices, 12 buffers are allocated, plus 1472 bytes overhead.
@@ -483,7 +456,6 @@ To complete the installation follow the instructions in
       insmod ./drivers/crypto/qat/qat_common/intel_qat.ko
       insmod ./drivers/crypto/qat/qat_dh895xcc/qat_dh895xcc.ko
 
-
 .. Note::
 
    If you see the following warning in ``/var/log/messages`` it can be ignored:
@@ -644,7 +616,7 @@ e.g. for the C62x device::
 
     cd to the top-level DPDK directory
     modprobe uio
-    insmod ./build/kmod/igb_uio.ko
+    insmod ./<build_dir>/kernel/linux/igb_uio/igb_uio.ko
     echo "8086 37c9" > /sys/bus/pci/drivers/igb_uio/new_id
     lspci -vvd:37c9
 
@@ -660,27 +632,20 @@ Testing
 
 QAT SYM crypto PMD can be tested by running the test application::
 
-    make defconfig
-    make -j
-    cd ./build/app
-    ./test -l1 -n1 -w <your qat bdf>
+    cd ./<build_dir>/app/test
+    ./dpdk-test -l1 -n1 -w <your qat bdf>
     RTE>>cryptodev_qat_autotest
 
 QAT ASYM crypto PMD can be tested by running the test application::
 
-    make defconfig
-    make -j
-    cd ./build/app
-    ./test -l1 -n1 -w <your qat bdf>
+    cd ./<build_dir>/app/test
+    ./dpdk-test -l1 -n1 -w <your qat bdf>
     RTE>>cryptodev_qat_asym_autotest
 
 QAT compression PMD can be tested by running the test application::
 
-    make defconfig
-    sed -i 's,\(CONFIG_RTE_COMPRESSDEV_TEST\)=n,\1=y,' build/.config
-    make -j
-    cd ./build/app
-    ./test -l1 -n1 -w <your qat bdf>
+    cd ./<build_dir>/app/test
+    ./dpdk-test -l1 -n1 -w <your qat bdf>
     RTE>>compressdev_autotest
 
 
@@ -704,7 +669,7 @@ the process cmdline, e.g. using any of the following::
 
     The global RTE_LOG_DP_LEVEL overrides data-path trace so must be set to
     RTE_LOG_DEBUG to see all the trace. This variable is in config/rte_config.h
-    for meson build and config/common_base for gnu make.
+    for meson build.
     Also the dynamic global log level overrides both sets of trace, so e.g. no
     QAT trace would display in this case::
 
diff --git a/doc/guides/cryptodevs/scheduler.rst b/doc/guides/cryptodevs/scheduler.rst
index 7004ca431a..ee23b25b73 100644
--- a/doc/guides/cryptodevs/scheduler.rst
+++ b/doc/guides/cryptodevs/scheduler.rst
@@ -32,14 +32,6 @@ Limitations
   is enabled.
 
 
-Installation
-------------
-
-To build DPDK with CRYTPO_SCHEDULER_PMD the user is required to set
-CONFIG_RTE_LIBRTE_PMD_CRYPTO_SCHEDULER=y in config/common_base, and
-recompile DPDK
-
-
 Initialization
 --------------
 
diff --git a/doc/guides/cryptodevs/snow3g.rst b/doc/guides/cryptodevs/snow3g.rst
index e0cddc2d77..13341c39c4 100644
--- a/doc/guides/cryptodevs/snow3g.rst
+++ b/doc/guides/cryptodevs/snow3g.rst
@@ -88,14 +88,6 @@ In order to enable this virtual crypto PMD, user must:
 
 * Build the multi buffer library (explained in Installation section).
 
-* Build DPDK as follows:
-
-.. code-block:: console
-
-	make config T=x86_64-native-linux-gcc
-	sed -i 's,\(CONFIG_RTE_LIBRTE_PMD_SNOW3G\)=n,\1=y,' build/.config
-	make
-
 To use the PMD in an application, user must:
 
 * Call rte_vdev_init("crypto_snow3g") within the application.
@@ -115,5 +107,5 @@ Example:
 
 .. code-block:: console
 
-    ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_snow3g,socket_id=0,max_nb_sessions=128" \
+    ./dpdk-l2fwd-crypto -l 1 -n 4 --vdev="crypto_snow3g,socket_id=0,max_nb_sessions=128" \
     -- -p 1 --cdev SW --chain CIPHER_ONLY --cipher_algo "snow3g-uea2"
diff --git a/doc/guides/cryptodevs/virtio.rst b/doc/guides/cryptodevs/virtio.rst
index 2c46bda866..83d8e32397 100644
--- a/doc/guides/cryptodevs/virtio.rst
+++ b/doc/guides/cryptodevs/virtio.rst
@@ -83,27 +83,17 @@ The unit test cases can be tested as below:
 .. code-block:: console
 
     reserve enough huge pages
-    cd to the top-level DPDK directory
-    export RTE_TARGET=x86_64-native-linux-gcc
-    export RTE_SDK=`pwd`
-    cd to app/test
-    type the command "make" to compile
-    run the tests with "./test"
-    type the command "cryptodev_virtio_autotest" to test
+    cd to <build_dir>
+    meson test cryptodev_virtio_autotest
 
 The performance can be tested as below:
 
 .. code-block:: console
 
     reserve enough huge pages
-    cd to the top-level DPDK directory
-    export RTE_TARGET=x86_64-native-linux-gcc
-    export RTE_SDK=`pwd`
-    cd to app/test-crypto-perf
-    type the command "make" to compile
-    run the tests with the following command:
-
-    ./dpdk-test-crypto-perf -l 0,1 -- --devtype crypto_virtio \
+    cd to <build_dir>
+
+    ./app/dpdk-test-crypto-perf -l 0,1 -- --devtype crypto_virtio \
         --ptest throughput --optype cipher-then-auth --cipher-algo aes-cbc \
         --cipher-op encrypt --cipher-key-sz 16 --auth-algo sha1-hmac \
         --auth-op generate --auth-key-sz 64 --digest-sz 12 \
diff --git a/doc/guides/cryptodevs/zuc.rst b/doc/guides/cryptodevs/zuc.rst
index 9b51ba141d..907840ef05 100644
--- a/doc/guides/cryptodevs/zuc.rst
+++ b/doc/guides/cryptodevs/zuc.rst
@@ -88,14 +88,6 @@ In order to enable this virtual crypto PMD, user must:
 
 * Build the multi buffer library (explained in Installation section).
 
-* Build DPDK as follows:
-
-.. code-block:: console
-
-	make config T=x86_64-native-linux-gcc
-	sed -i 's,\(CONFIG_RTE_LIBRTE_PMD_ZUC\)=n,\1=y,' build/.config
-	make
-
 To use the PMD in an application, user must:
 
 * Call rte_vdev_init("crypto_zuc") within the application.
@@ -115,5 +107,5 @@ Example:
 
 .. code-block:: console
 
-    ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_zuc,socket_id=0,max_nb_sessions=128" \
+    ./dpdk-l2fwd-crypto -l 1 -n 4 --vdev="crypto_zuc,socket_id=0,max_nb_sessions=128" \
     -- -p 1 --cdev SW --chain CIPHER_ONLY --cipher_algo "zuc-eea3"
-- 
2.17.1


  parent reply	other threads:[~2020-09-03 15:34 UTC|newest]

Thread overview: 300+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-07 12:29 [dpdk-dev] [PATCH 20.11 00/19] remove make support in DPDK Ciara Power
2020-08-07 12:29 ` [dpdk-dev] [PATCH 20.11 01/19] examples: remove legacy sections of makefiles Ciara Power
2020-08-12 16:38   ` Bruce Richardson
2020-08-13 14:29     ` Power, Ciara
2020-08-14 10:29   ` Bruce Richardson
2020-08-07 12:29 ` [dpdk-dev] [PATCH 20.11 02/19] build: remove makefiles and mk directory Ciara Power
2020-08-07 12:45   ` Bruce Richardson
2020-08-07 13:19     ` Jerin Jacob
2020-08-07 13:23       ` Bruce Richardson
2020-08-07 13:34         ` Ferruh Yigit
2020-08-07 14:01           ` Jerin Jacob
2020-08-07 15:05             ` Gaëtan Rivet
2020-08-12 15:50               ` Bruce Richardson
2020-08-12 16:12                 ` Jerin Jacob
2020-08-12 16:40                   ` Bruce Richardson
2020-08-07 12:29 ` [dpdk-dev] [PATCH 20.11 03/19] config: remove all config files used by make Ciara Power
2020-08-07 12:29 ` [dpdk-dev] [PATCH 20.11 04/19] buildtools: remove all scripts for use with make Ciara Power
2020-08-12 21:54   ` Thomas Monjalon
2020-08-07 12:29 ` [dpdk-dev] [PATCH 20.11 05/19] doc: remove references to make in bbdev guides Ciara Power
2020-08-12 21:56   ` Thomas Monjalon
2020-08-18 11:46   ` Laatz, Kevin
2020-08-07 12:29 ` [dpdk-dev] [PATCH 20.11 06/19] doc: remove references to make in compressdev guides Ciara Power
2020-08-18 11:46   ` Laatz, Kevin
2020-08-07 12:29 ` [dpdk-dev] [PATCH 20.11 07/19] doc: remove references to make in contributing guides Ciara Power
2020-08-07 12:29 ` [dpdk-dev] [PATCH 20.11 08/19] doc: remove references to make in cryptodev guides Ciara Power
2020-08-18 11:46   ` Laatz, Kevin
2020-08-07 12:29 ` [dpdk-dev] [PATCH 20.11 09/19] doc: remove references to make in eventdev guides Ciara Power
2020-08-18 11:46   ` Laatz, Kevin
2020-08-07 12:30 ` [dpdk-dev] [PATCH 20.11 10/19] doc: remove references to make in FreeBSD gsg guide Ciara Power
2020-08-18 11:33   ` Bruce Richardson
2020-08-07 12:30 ` [dpdk-dev] [PATCH 20.11 11/19] doc: remove references to make in howto guides Ciara Power
2020-08-12 22:00   ` Thomas Monjalon
2020-08-07 12:30 ` [dpdk-dev] [PATCH 20.11 12/19] doc: remove references to make in Linux gsg guides Ciara Power
2020-08-18 11:40   ` Bruce Richardson
2020-08-19 13:03     ` Bruce Richardson
2020-08-18 11:48   ` Bruce Richardson
2020-08-18 13:11   ` Bruce Richardson
2020-08-18 13:34   ` Bruce Richardson
2020-08-18 14:31   ` Bruce Richardson
2020-08-18 14:45   ` Bruce Richardson
2020-08-07 12:30 ` [dpdk-dev] [PATCH 20.11 13/19] doc: remove references to make in mempool guides Ciara Power
2020-08-18 10:34   ` Kilheeney, Louise
2020-08-07 12:30 ` [dpdk-dev] [PATCH 20.11 14/19] doc: remove references to make in NIC guides Ciara Power
2020-08-19 16:22   ` Bruce Richardson
2020-08-19 17:17   ` Bruce Richardson
2020-08-07 12:30 ` [dpdk-dev] [PATCH 20.11 15/19] doc: remove references to make in platform guides Ciara Power
2020-08-12 22:03   ` Thomas Monjalon
2020-08-07 12:30 ` [dpdk-dev] [PATCH 20.11 16/19] doc: remove references to make in prog guides Ciara Power
2020-08-12 22:05   ` Thomas Monjalon
2020-08-17 13:54   ` Bruce Richardson
2020-08-19 15:54     ` Stephen Hemminger
2020-08-19 15:21   ` Laatz, Kevin
2020-08-07 12:30 ` [dpdk-dev] [PATCH 20.11 17/19] doc: remove references to make in rawdev guides Ciara Power
2020-08-18 11:46   ` Laatz, Kevin
2020-08-07 12:30 ` [dpdk-dev] [PATCH 20.11 18/19] doc: remove references to make in sample app guides Ciara Power
2020-08-07 12:30 ` [dpdk-dev] [PATCH 20.11 19/19] doc: remove references to make in vdpadevs guides Ciara Power
2020-08-07 13:28 ` [dpdk-dev] [PATCH 20.11 00/19] remove make support in DPDK Bruce Richardson
2020-08-12 22:07   ` Thomas Monjalon
2020-08-12 21:50 ` Thomas Monjalon
2020-08-20 12:41 ` [dpdk-dev] [PATCH v2 00/37] " Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 01/37] examples: remove legacy sections of makefiles Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 02/37] examples/multi_process: convert to pkg-config-based build Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 03/37] examples/server_node_efd: " Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 04/37] examples/ka-agent: " Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 05/37] examples/pthread: " Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 06/37] examples/vm_power_manager: convert to use DPDK pkg-config Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 07/37] examples/vm_power_manager: convert guest cli to pkg-config Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 08/37] examples/ethtool: convert to pkg-config-based build Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 09/37] build: create dummy Makefile Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 10/37] build: remove makefiles and mk directory Ciara Power
2020-08-21  3:18     ` Ruifeng Wang
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 11/37] config: remove all config files used by make Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 12/37] examples: remove old build system references Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 13/37] buildtools: remove all scripts for use with make Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 14/37] devtools: remove use of make in scripts Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 15/37] app/test: remove references to make Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 16/37] drivers: remove references to make config options Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 17/37] lib: " Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 18/37] doc/guides: remove use of DPDK make build system Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 19/37] doc: remove deprecation notice for make Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 20/37] doc: remove references to make in bbdev guides Ciara Power
2020-08-21  2:12     ` Chautru, Nicolas
2020-08-21 10:55       ` Power, Ciara
2020-08-21 15:18         ` Chautru, Nicolas
2020-08-21  2:22     ` Chautru, Nicolas
2020-08-21  9:41       ` Bruce Richardson
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 21/37] doc: remove references to make in compressdev guides Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 22/37] doc: remove references to make in contributing guides Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 23/37] doc: remove references to make in cryptodev guides Ciara Power
2020-08-20 15:08     ` Laatz, Kevin
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 24/37] doc: remove references to make in eventdev guides Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 25/37] doc: remove references to make in FreeBSD gsg guide Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 26/37] doc: remove references to make in howto guides Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 27/37] doc: remove references to make in Linux gsg guides Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 28/37] doc: remove references to make in mempool guides Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 29/37] doc: remove references to make in NIC guides Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 30/37] doc: remove references to make in platform guides Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 31/37] doc: remove references to make in prog guides Ciara Power
2020-08-20 15:08     ` Laatz, Kevin
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 32/37] doc: remove references to make in rawdev guides Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 33/37] doc: remove references to make in sample app guides Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 34/37] doc: remove references to make in vdpadevs guides Ciara Power
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 35/37] doc: remove reference to make in tools guides Ciara Power
2020-09-02 11:08     ` Laatz, Kevin
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 36/37] doc: remove references to make in testpmd guides Ciara Power
2020-09-02 11:08     ` Laatz, Kevin
2020-08-20 12:41   ` [dpdk-dev] [PATCH v2 37/37] doc: update quick build doc to remove make references Ciara Power
2020-09-02 11:08     ` Laatz, Kevin
2020-09-03 15:26 ` [dpdk-dev] [PATCH v3 00/37] remove make support in DPDK Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 01/37] examples: remove legacy sections of makefiles Ciara Power
2020-09-04  0:36     ` Chautru, Nicolas
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 02/37] examples/multi_process: convert to pkg-config-based build Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 03/37] examples/server_node_efd: " Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 04/37] examples/ka-agent: " Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 05/37] examples/pthread: " Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 06/37] examples/vm_power_manager: convert to use DPDK pkg-config Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 07/37] examples/vm_power_manager: convert guest cli to pkg-config Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 08/37] examples/ethtool: convert to pkg-config-based build Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 09/37] build: create dummy Makefile Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 10/37] build: remove makefiles and mk directory Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 11/37] config: remove all config files used by make Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 12/37] examples: remove old build system references Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 13/37] buildtools: remove all scripts for use with make Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 14/37] devtools: remove use of make in scripts Ciara Power
2020-09-06 10:15     ` Thomas Monjalon
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 15/37] app/test: remove references to make Ciara Power
2020-09-04  0:24     ` Chautru, Nicolas
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 16/37] drivers: remove references to make config options Ciara Power
2020-09-06 10:24     ` Thomas Monjalon
2020-09-07  8:18       ` Bruce Richardson
2020-09-07  9:43         ` Thomas Monjalon
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 17/37] lib: " Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 18/37] doc/guides: remove use of DPDK make build system Ciara Power
2020-09-03 15:26   ` [dpdk-dev] [PATCH v3 19/37] doc: remove deprecation notice for make Ciara Power
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 20/37] doc: remove references to make in bbdev guides Ciara Power
2020-09-04  1:35     ` Chautru, Nicolas
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 21/37] doc: remove references to make in compressdev guides Ciara Power
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 22/37] doc: remove references to make in contributing guides Ciara Power
2020-09-07 10:20     ` Thomas Monjalon
2020-09-17 13:44       ` Power, Ciara
2020-09-21 16:14         ` Thomas Monjalon
2020-09-21 19:14           ` Dumitrescu, Cristian
2020-09-22  8:39             ` Power, Ciara
2020-09-22  9:14               ` Dumitrescu, Cristian
2020-09-03 15:27   ` Ciara Power [this message]
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 24/37] doc: remove references to make in eventdev guides Ciara Power
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 25/37] doc: remove references to make in FreeBSD gsg guide Ciara Power
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 26/37] doc: remove references to make in howto guides Ciara Power
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 27/37] doc: remove references to make in Linux gsg guides Ciara Power
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 28/37] doc: remove references to make in mempool guides Ciara Power
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 29/37] doc: remove references to make in NIC guides Ciara Power
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 30/37] doc: remove references to make in platform guides Ciara Power
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 31/37] doc: remove references to make in prog guides Ciara Power
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 32/37] doc: remove references to make in rawdev guides Ciara Power
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 33/37] doc: remove references to make in sample app guides Ciara Power
2020-09-04  0:34     ` Chautru, Nicolas
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 34/37] doc: remove references to make in vdpadevs guides Ciara Power
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 35/37] doc: remove reference to make in tools guides Ciara Power
2020-09-04  0:32     ` Chautru, Nicolas
2020-09-04  9:04     ` Pattan, Reshma
2020-09-04 13:34       ` Bruce Richardson
2020-09-04 13:54         ` Pattan, Reshma
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 36/37] doc: remove references to make in testpmd guides Ciara Power
2020-09-03 15:27   ` [dpdk-dev] [PATCH v3 37/37] doc: update quick build doc to remove make references Ciara Power
2020-09-06 13:19     ` Thomas Monjalon
2020-09-06 21:58   ` [dpdk-dev] [PATCH v3 00/37] remove make support in DPDK Thomas Monjalon
2020-09-07 22:06   ` [dpdk-dev] [PATCH v4 00/31] " Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 01/31] doc: build without using make Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 02/31] examples: remove legacy sections of makefiles Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 03/31] examples/ka-agent: convert to pkg-config-based build Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 04/31] examples/server_node_efd: " Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 05/31] examples/performance-thread: " Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 06/31] examples/multi_process: " Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 07/31] examples/vm_power: " Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 08/31] examples/ethtool: " Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 09/31] examples: remove old build system references Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 10/31] build: create dummy Makefile Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 11/31] build: remove makefiles Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 12/31] buildtools: remove scripts used only with make Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 13/31] config: remove default configs used " Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 14/31] devtools: remove legacy flags from includes check Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 15/31] app: remove references to make-based config Thomas Monjalon
2020-09-14 17:11       ` Laatz, Kevin
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 16/31] doc: remove references to make from Linux guide Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 17/31] doc: remove references to make from FreeBSD guide Thomas Monjalon
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 18/31] doc: remove references to make from howto guides Thomas Monjalon
2020-09-14 16:53       ` Laatz, Kevin
2020-09-07 22:06     ` [dpdk-dev] [PATCH v4 19/31] doc: remove references to make from prog guide Thomas Monjalon
2020-09-07 22:07     ` [dpdk-dev] [PATCH v4 20/31] doc: remove references to make from platforms guides Thomas Monjalon
2020-09-14 16:52       ` Laatz, Kevin
2020-09-07 22:07     ` [dpdk-dev] [PATCH v4 21/31] doc: remove references to make from mempool guide Thomas Monjalon
2020-09-14 16:52       ` Laatz, Kevin
2020-09-07 22:07     ` [dpdk-dev] [PATCH v4 22/31] doc: remove references to make from NICs guides Thomas Monjalon
2020-09-07 22:07     ` [dpdk-dev] [PATCH v4 23/31] doc: remove references to make from vdpadevs guides Thomas Monjalon
2020-09-07 22:07     ` [dpdk-dev] [PATCH v4 24/31] doc: remove references to make from bbdevs guides Thomas Monjalon
2020-09-07 22:07     ` [dpdk-dev] [PATCH v4 25/31] doc: remove references to make from cryptodevs guides Thomas Monjalon
2020-09-07 22:07     ` [dpdk-dev] [PATCH v4 26/31] doc: remove references to make from compressdevs guides Thomas Monjalon
2020-09-07 22:07     ` [dpdk-dev] [PATCH v4 27/31] doc: remove references to make from eventdevs guides Thomas Monjalon
2020-09-07 22:07     ` [dpdk-dev] [PATCH v4 28/31] doc: remove references to make from rawdevs guides Thomas Monjalon
2020-09-07 22:07     ` [dpdk-dev] [PATCH v4 29/31] doc: remove references to make from app guides Thomas Monjalon
2020-09-07 22:07     ` [dpdk-dev] [PATCH v4 30/31] doc: remove reference to make from tools guides Thomas Monjalon
2020-09-07 22:07     ` [dpdk-dev] [PATCH v4 31/31] doc: remove references to make from contributing guide Thomas Monjalon
2020-09-08 10:16       ` Thomas Monjalon
2020-09-08  8:16     ` [dpdk-dev] [PATCH v4 00/31] remove make support in DPDK Bruce Richardson
2020-09-08  9:05       ` Thomas Monjalon
2020-09-15 14:02         ` David Marchand
2020-09-15 15:08           ` Power, Ciara
2020-09-15 15:44             ` Thomas Monjalon
2020-09-15 15:57               ` Richardson, Bruce
2020-09-15 16:10                 ` Thomas Monjalon
2020-09-15 16:39                   ` Chautru, Nicolas
2020-09-15 16:42                     ` Thomas Monjalon
2020-09-16 14:58             ` David Marchand
2020-09-08 13:02     ` David Marchand
2020-09-21 13:59 ` [dpdk-dev] [PATCH v5 00/20] " Ciara Power
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 01/20] devtools: remove legacy flags from includes check Ciara Power
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 02/20] app: remove references to make-based config Ciara Power
2020-09-21 14:28     ` Chautru, Nicolas
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 03/20] doc: remove references to make from Linux guide Ciara Power
2020-09-30 22:09     ` Thomas Monjalon
2020-10-01  8:31       ` Power, Ciara
2020-10-01  8:36       ` Power, Ciara
2020-10-01  9:49         ` Thomas Monjalon
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 04/20] doc: remove references to make from FreeBSD guide Ciara Power
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 05/20] doc: remove references to make from howto guides Ciara Power
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 06/20] doc: remove references to make from prog guide Ciara Power
2020-10-09 12:07     ` Ferruh Yigit
2020-10-09 12:12       ` Ferruh Yigit
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 07/20] doc: remove references to make from platforms guides Ciara Power
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 08/20] doc: remove references to make from mempool guide Ciara Power
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 09/20] doc: remove references to make from NICs guides Ciara Power
2020-10-09 12:08     ` Ferruh Yigit
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 10/20] doc: remove references to make from vdpadevs guides Ciara Power
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 11/20] doc: remove references to make from bbdevs guides Ciara Power
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 12/20] doc: remove references to make from cryptodevs guides Ciara Power
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 13/20] doc: remove references to make from compressdevs guides Ciara Power
2020-10-02  9:33     ` Daly, Lee
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 14/20] doc: remove references to make from eventdevs guides Ciara Power
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 15/20] doc: remove references to make from rawdevs guides Ciara Power
2020-10-01 15:17     ` Bruce Richardson
2020-10-02 14:57     ` Xu, Rosen
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 16/20] doc: remove references to make from app guides Ciara Power
2020-09-24 13:17     ` David Hunt
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 17/20] doc: remove reference to make from tools guides Ciara Power
2020-10-01 14:03     ` Power, Ciara
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 18/20] doc: remove references to make from contributing guide Ciara Power
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 19/20] doc: add to release notes to reflect removal of make Ciara Power
2020-09-21 13:59   ` [dpdk-dev] [PATCH v5 20/20] doc: update patch cheatsheet to use meson Ciara Power
2020-10-01 15:09   ` [dpdk-dev] [PATCH v5 00/20] remove make support in DPDK Thomas Monjalon
2020-10-09 10:21 ` [dpdk-dev] [PATCH v6 00/14] " Ciara Power
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 01/14] doc: remove references to make from platforms guides Ciara Power
2020-10-12 19:37     ` Harman Kalra
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 02/14] doc: remove references to make from mempool guide Ciara Power
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 03/14] doc: remove references to make from NICs guides Ciara Power
2020-10-09 12:00     ` [dpdk-dev] [EXT] " Igor Russkikh
2020-10-11 21:01       ` Thomas Monjalon
2020-10-12  6:47         ` Rasesh Mody
2020-10-09 12:15     ` [dpdk-dev] " Ferruh Yigit
2020-10-12  0:42       ` Ajit Khaparde
2020-10-12  2:41     ` Hyong Youb Kim (hyonkim)
2020-10-12 19:57     ` [dpdk-dev] [EXT] " Harman Kalra
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 04/14] doc: remove references to make from vdpadevs guides Ciara Power
2020-10-11  6:49     ` Matan Azrad
2020-10-11 20:57     ` Thomas Monjalon
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 05/14] doc: remove references to make from bbdevs guides Ciara Power
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 06/14] doc: remove references to make from cryptodevs guides Ciara Power
2020-10-09 10:30     ` Akhil Goyal
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 07/14] doc: remove references to make from compressdevs guides Ciara Power
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 08/14] doc: remove references to make from eventdevs guides Ciara Power
2020-10-11 20:36     ` Thomas Monjalon
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 09/14] doc: remove references to make from rawdevs guides Ciara Power
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 10/14] doc: remove references to make from app guides Ciara Power
2020-10-09 12:23     ` Ferruh Yigit
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 11/14] doc: remove reference to make from tools guides Ciara Power
2020-10-11 20:45     ` Thomas Monjalon
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 12/14] doc: remove references to make from contributing guide Ciara Power
2020-10-11 20:52     ` Thomas Monjalon
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 13/14] doc: add to release notes to reflect removal of make Ciara Power
2020-10-09 10:21   ` [dpdk-dev] [PATCH v6 14/14] doc: update patch cheatsheet to use meson Ciara Power
2020-10-21  8:17 ` [dpdk-dev] [PATCH v7 00/14] remove make support in DPDK Ciara Power
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 01/14] doc: remove references to make from platforms guides Ciara Power
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 02/14] doc: remove references to make from mempool guide Ciara Power
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 03/14] doc: remove references to make from NICs guides Ciara Power
2020-10-22  8:31     ` Thomas Monjalon
2020-10-22 10:03       ` Power, Ciara
2020-10-22 10:16         ` Thomas Monjalon
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 04/14] doc: remove references to make from vdpadevs guides Ciara Power
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 05/14] doc: remove references to make from bbdevs guides Ciara Power
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 06/14] doc: remove references to make from cryptodevs guides Ciara Power
2020-10-21  8:33     ` Ruifeng Wang
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 07/14] doc: remove references to make from compressdevs guides Ciara Power
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 08/14] doc: remove references to make from eventdevs guides Ciara Power
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 09/14] doc: remove references to make from rawdevs guides Ciara Power
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 10/14] doc: remove references to make from app guides Ciara Power
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 11/14] doc: remove reference to make from tools guides Ciara Power
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 12/14] doc: remove references to make from contributing guide Ciara Power
2020-10-22 20:40     ` Thomas Monjalon
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 13/14] doc: add to release notes to reflect removal of make Ciara Power
2020-10-21  8:17   ` [dpdk-dev] [PATCH v7 14/14] doc: update patch cheatsheet to use meson Ciara Power
2020-10-22 20:53   ` [dpdk-dev] [PATCH v7 00/14] remove make support in DPDK Thomas Monjalon

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=20200903152717.42095-24-ciara.power@intel.com \
    --to=ciara.power@intel.com \
    --cc=adwivedi@marvell.com \
    --cc=akhil.goyal@nxp.com \
    --cc=anoobj@marvell.com \
    --cc=asomalap@amd.com \
    --cc=declan.doherty@intel.com \
    --cc=deepak.k.jain@intel.com \
    --cc=dev@dpdk.org \
    --cc=fiona.trahe@intel.com \
    --cc=g.singh@nxp.com \
    --cc=hemant.agrawal@nxp.com \
    --cc=jianjay.zhou@huawei.com \
    --cc=john.griffin@intel.com \
    --cc=john.mcnamara@intel.com \
    --cc=jsrikanth@marvell.com \
    --cc=lironh@marvell.com \
    --cc=marko.kovacevic@intel.com \
    --cc=michaelsh@marvell.com \
    --cc=pablo.de.lara.guarch@intel.com \
    --cc=rnagadheeraj@marvell.com \
    --cc=roy.fan.zhang@intel.com \
    --cc=ruifeng.wang@arm.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).