From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id A7203A00BE for ; Thu, 28 May 2020 13:18:33 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7DAC71DB6C; Thu, 28 May 2020 13:18:33 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id E77051DB6C for ; Thu, 28 May 2020 13:18:31 +0200 (CEST) IronPort-SDR: 8louqW0r95IbHUc0gylAuQXvYFIbO7N/LnDjV6VWbAAWMVQdQeTAm2yGjJK6ycNtksNcQFmJDI NasGqvcCqUnQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 May 2020 04:18:30 -0700 IronPort-SDR: 2qGk5zf96hmLZrDu3870nVaj2H4aml+UHW6NAoKSs8rJ4wHnNDZSGn6/XnU41bAoHun1MeWaft myPgJTOL6L5A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,444,1583222400"; d="scan'208";a="414569724" Received: from silpixa00399593.ir.intel.com (HELO silpixa00399593.ger.corp.intel.com) ([10.237.223.21]) by orsmga004.jf.intel.com with ESMTP; 28 May 2020 04:18:30 -0700 From: Pablo de Lara To: stable@dpdk.org Cc: Pablo de Lara Date: Thu, 28 May 2020 12:18:25 +0100 Message-Id: <1590664705-50169-1-git-send-email-pablo.de.lara.guarch@intel.com> X-Mailer: git-send-email 2.7.5 Subject: [dpdk-stable] [PATCH 19.11] doc: add NASM installation steps X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" [ upstream commit dede694cd58f6ee9c53f1e7d8d5960835bdc8fff ] The intel-ipsec-mb library requires NASM as a dependency. Steps on how to get and install NASM are added on the documentation of the crypto PMDs which requires the library. Signed-off-by: Pablo de Lara --- doc/guides/cryptodevs/aesni_gcm.rst | 13 +++++++++++++ doc/guides/cryptodevs/aesni_mb.rst | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/doc/guides/cryptodevs/aesni_gcm.rst b/doc/guides/cryptodevs/aesni_gcm.rst index 151aa30..a8ea320 100644 --- a/doc/guides/cryptodevs/aesni_gcm.rst +++ b/doc/guides/cryptodevs/aesni_gcm.rst @@ -45,6 +45,19 @@ can be downloaded in ``_. +Once it is downloaded, extract it and follow these steps: + +.. code-block:: console + + ./configure + make + make install + As a reference, the following table shows a mapping between the past DPDK versions and the external crypto libraries supported by them: diff --git a/doc/guides/cryptodevs/aesni_mb.rst b/doc/guides/cryptodevs/aesni_mb.rst index 5d8fb46..ca6c169 100644 --- a/doc/guides/cryptodevs/aesni_mb.rst +++ b/doc/guides/cryptodevs/aesni_mb.rst @@ -72,6 +72,19 @@ can be downloaded from ``_. +Once it is downloaded, extract it and follow these steps: + +.. code-block:: console + + ./configure + make + make install + As a reference, the following table shows a mapping between the past DPDK versions and the Multi-Buffer library version supported by them: -- 2.7.5