From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx0a-00191d01.pphosted.com (mx0b-00191d01.pphosted.com [67.231.157.136]) by dpdk.org (Postfix) with ESMTP id 13883292D for ; Fri, 23 Jun 2017 19:07:59 +0200 (CEST) Received: from pps.filterd (m0049462.ppops.net [127.0.0.1]) by m0049462.ppops.net-00191d01. (8.16.0.17/8.16.0.17) with SMTP id v5NH5Hxb019039 for ; Fri, 23 Jun 2017 13:07:59 -0400 Received: from tlpd255.enaf.dadc.sbc.com (sbcsmtp3.sbc.com [144.160.112.28]) by m0049462.ppops.net-00191d01. with ESMTP id 2b95hcu1dc-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Fri, 23 Jun 2017 13:07:59 -0400 Received: from enaf.dadc.sbc.com (localhost [127.0.0.1]) by tlpd255.enaf.dadc.sbc.com (8.14.5/8.14.5) with ESMTP id v5NH7wX6059226 for ; Fri, 23 Jun 2017 12:07:58 -0500 Received: from dalint01.pst.cso.att.com (dalint01.pst.cso.att.com [135.31.133.159]) by tlpd255.enaf.dadc.sbc.com (8.14.5/8.14.5) with ESMTP id v5NH7r5w059218 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Fri, 23 Jun 2017 12:07:53 -0500 Received: from clpi183.sldc.sbc.com (clpi183.sldc.sbc.com [135.41.1.46]) by dalint01.pst.cso.att.com (RSA Interceptor) for ; Fri, 23 Jun 2017 17:07:37 GMT Received: from sldc.sbc.com (localhost [127.0.0.1]) by clpi183.sldc.sbc.com (8.14.5/8.14.5) with ESMTP id v5NH7bZ3025748 for ; Fri, 23 Jun 2017 12:07:37 -0500 Received: from SAUSMAILHUB.ad.tri.sbc.com (sausmailhub.ad.tri.sbc.com [144.60.55.228]) by clpi183.sldc.sbc.com (8.14.5/8.14.5) with ESMTP id v5NH7UJk024871 for ; Fri, 23 Jun 2017 12:07:30 -0500 Received: from SAUSMAILMBX1.ad.tri.sbc.com ([144.60.55.229]) by SAUSMAILHUB.ad.tri.sbc.com ([144.60.55.228]) with mapi id 14.03.0351.000; Fri, 23 Jun 2017 12:07:29 -0500 From: "McCullough, Harrison" To: "dev@dpdk.org" Thread-Topic: [PATCH] (pkgtgen-dpdk) doc: Fix broken link to pktgen-dpdk documentation Thread-Index: AdLsLhuVERrRza0pSmqfPQ709nENmw== Date: Fri, 23 Jun 2017 17:07:29 +0000 Message-ID: <942AD08E4186F644A54168E4F84117C93166AC@SAUSMAILMBX1.ad.tri.sbc.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [144.60.57.137] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-RSA-Inspected: yes X-RSA-Classifications: public X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:, , definitions=2017-06-23_10:, , signatures=0 X-Proofpoint-Spam-Details: rule=outbound_policy_notspam policy=outbound_policy score=0 priorityscore=1501 malwarescore=0 suspectscore=0 phishscore=0 bulkscore=0 spamscore=0 clxscore=1011 lowpriorityscore=0 impostorscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1703280000 definitions=main-1706230288 Subject: [dpdk-dev] [PATCH] (pkgtgen-dpdk) doc: Fix broken link to pktgen-dpdk documentation X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2017 17:08:00 -0000 The `setup.sh` script is now located in the `tools` subdirectory. In addition, it is not an executable but is shown as if it was. It should either be called with `bash`, run with `source`, or set to be an executable. Signed-off-by: Harrison McCullough --- docs/source/getting_started.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/getting_started.rst b/docs/source/getting_started.= rst index 3869be1..5a0b6a3 100644 --- a/docs/source/getting_started.rst +++ b/docs/source/getting_started.rst @@ -186,19 +186,19 @@ Pktgen can then be built as follows:: Setting up your environment --------------------------- =20 -In the ``PktgenInstallDir`` level directory there is ``setup.sh`` script, +In the ``PktgenInstallDir/tools`` directory there is ``setup.sh`` script, which should be run once per boot. The script contains the commands requir= ed to set up the environment:: =20 - $ cd - $ sudo ./setup.sh + $ cd /tools + $ sudo bash setup.sh =20 The setup script is a bash script and tries to configure the system to run= a DPDK application. You will probably have to change the script to match you= r system. =20 The ``modprobe uio`` command, in the setup script, loads the UIO support -module into the kernel as well as loafing the igb-uio.ko module. +module into the kernel as well as loading the igb-uio.ko module. =20 The two echo commands, in the setup script, set up the huge pages for a tw= o socket system. If you only have a single socket system then remove the sec= ond --=20 1.9.1