From patchwork Fri Feb 12 14:46:28 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Traynor X-Patchwork-Id: 87886 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 11E9FA0547; Fri, 12 Feb 2021 15:47:13 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 76D2922A29E; Fri, 12 Feb 2021 15:47:12 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 5349A22A28E for ; Fri, 12 Feb 2021 15:47:11 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1613141230; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=SwKCwmfvoZEMPQdG+ymQaO7UPiacKMLA60ByuOTxXCo=; b=hUkMUmOwAv25EPJxuQDK5ceh6xiiig1HkW47NtuRIDE1r8c09J8mnvy/NLwB4rjCTIg02Y 3kiddtCJQR5u83wvp/HgKQg1RiW+p8ParmIg/vFLPbKbMYlZAlyjWr0bjq6/kZ4AF7pLEM M++o+XPJ2EYvTLfoLjdHkxRwHNOetGI= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-149-rJPkR-LzM36XMy2Bq5Jgkg-1; Fri, 12 Feb 2021 09:47:07 -0500 X-MC-Unique: rJPkR-LzM36XMy2Bq5Jgkg-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 406751005501; Fri, 12 Feb 2021 14:47:06 +0000 (UTC) Received: from rh.redhat.com (ovpn-115-138.ams2.redhat.com [10.36.115.138]) by smtp.corp.redhat.com (Postfix) with ESMTP id 0332060BE5; Fri, 12 Feb 2021 14:47:03 +0000 (UTC) From: Kevin Traynor To: dev@dpdk.org, john.mcnamara@intel.com Cc: bluca@debian.org, thomas@monjalon.net, bruce.richardson@intel.com, dmitry.kozliuk@gmail.com, Kevin Traynor Date: Fri, 12 Feb 2021 14:46:28 +0000 Message-Id: <20210212144628.2065224-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=ktraynor@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Subject: [dpdk-dev] [PATCH] doc: update info for pyelftools install X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" python-pyelftools is not packaged for RHEL/CentOS with the exception of RHEL7 EPEL. Add command to install it with pip. Fixes: f0f93a7adfee ("buildtools: use Python pmdinfogen") Signed-off-by: Kevin Traynor Acked-by: Bruce Richardson --- doc/guides/linux_gsg/sys_reqs.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/guides/linux_gsg/sys_reqs.rst b/doc/guides/linux_gsg/sys_reqs.rst index 4a401210d..d7ea8520e 100644 --- a/doc/guides/linux_gsg/sys_reqs.rst +++ b/doc/guides/linux_gsg/sys_reqs.rst @@ -55,5 +55,7 @@ Compilation of the DPDK * ``pyelftools`` (version 0.22+) - * For RHEL/Fedora systems it can be installed using ``dnf install python-pyelftools`` + * For Fedora systems it can be installed using ``dnf install python-pyelftools`` + + * For RHEL/CentOS systems it can be installed using ``pip3 install pyelftools`` * For Ubuntu/Debian it can be installed using ``apt install python3-pyelftools``