doc: remove references to make from mempool guide

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>
This commit is contained in:
Ciara Power 2020-10-21 09:17:12 +01:00 committed by Thomas Monjalon
parent d2e65d43fe
commit a3b34b1df8
2 changed files with 5 additions and 23 deletions

View File

@ -36,27 +36,17 @@ Pre-Installation Configuration
Config File Options Config File Options
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
The following options can be modified in the ``config`` file. The following option can be modified in the ``config/rte_config.h`` file.
Please note that enabling debugging options may affect system performance. Please note that enabling debugging options may affect system performance.
- ``CONFIG_RTE_MBUF_DEFAULT_MEMPOOL_OPS`` ( set to ``octeontx_fpavf``) - ``RTE_MBUF_DEFAULT_MEMPOOL_OPS`` ( set to ``octeontx_fpavf``)
Set default mempool ops to octeontx_fpavf. Set default mempool ops to octeontx_fpavf.
- ``CONFIG_RTE_LIBRTE_OCTEONTX_MEMPOOL`` (default ``y``)
Toggle compilation of the ``librte_mempool_octeontx`` driver.
Driver Compilation Driver Compilation
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
To compile the OCTEON TX FPAVF MEMPOOL PMD for Linux arm64 gcc target, run the See :doc:`../linux_gsg/build_dpdk` for more information on compiling DPDK.
following ``make`` command:
.. code-block:: console
cd <DPDK-source-directory>
make config T=arm64-thunderx-linux-gcc
Initialization Initialization
@ -70,5 +60,5 @@ Example:
.. code-block:: console .. code-block:: console
./build/app/test -c 0xf --base-virtaddr=0x100000000000 \ ./<build_dir>/app/test/dpdk-test -c 0xf --base-virtaddr=0x100000000000 \
--mbuf-pool-ops-name="octeontx_fpavf" --mbuf-pool-ops-name="octeontx_fpavf"

View File

@ -29,14 +29,6 @@ Prerequisites and Compilation procedure
Pre-Installation Configuration Pre-Installation Configuration
------------------------------ ------------------------------
Compile time Config Options
~~~~~~~~~~~~~~~~~~~~~~~~~~~
The following option can be modified in the ``config`` file.
- ``CONFIG_RTE_LIBRTE_OCTEONTX2_MEMPOOL`` (default ``y``)
Toggle compilation of the ``librte_mempool_octeontx2`` driver.
Runtime Config Options Runtime Config Options
~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~
@ -97,4 +89,4 @@ Standalone mempool device
Example command to run ``mempool_autotest`` test with standalone OCTEONTX2 NPA device:: Example command to run ``mempool_autotest`` test with standalone OCTEONTX2 NPA device::
echo "mempool_autotest" | build/app/test -c 0xf0 --mbuf-pool-ops-name="octeontx2_npa" echo "mempool_autotest" | <build_dir>/app/test/dpdk-test -c 0xf0 --mbuf-pool-ops-name="octeontx2_npa"