From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [dpdk-web] [PATCH v1] add dpdk-quickstart python script Date: Thu, 25 Oct 2018 11:14:08 +0200 Message-ID: <2437619.RhQcZ1ZtzN@xps> References: <20180803114114.45695-1-david.hunt@intel.com> <715da352-68b3-11b1-61be-6abf01485ea8@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: web@dpdk.org, "dev@dpdk.org" , "Mcnamara, John" To: "Hunt, David" Return-path: In-Reply-To: <715da352-68b3-11b1-61be-6abf01485ea8@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 25/10/2018 11:09, Hunt, David: > Hi, > > I'm just wondering if there is anything I can do to help move this > website patch forward? Any suggestions? The website has changed. It is using Hugo now. The update in doc/quick-start.html must be ported. About the python script, I don't understand why you want to have it in the web repo? > On 3/8/2018 12:41 PM, david.hunt at intel.com (David Hunt) wrote: > > This patch contains two section. > > 1. Updates to the existing quick-start.html page giving > > infomration on the new dpdk-quickstart.py script. > > 2. The dpdk-quickstart.py script itself. > > > > 1. The Quick start section contains some instructions for > > building DPDK and running TestPMD. > > While this is still useful, automating these steps > > through a script would provide a much faster and painless > > way to have DPDK up and running. The new dpdk-quickstart.py > > aims to address this. > > > > 2. This script performs the following: > > - Gets the latest DPDK release > > - Gets the necessary dependencies (if needed) > > - Builds DPDK with the default target > > - Sets up hugepages > > - Helps the user to select the ports to use on DPDK > > - Runs TestPMD, showing packet forwarding between two ports > > > > Signed-off-by: Pablo de Lara > > Signed-off-by: Kirill Rybalchenko > > Signed-off-by: David Hunt > > --- > > doc/quick-start.html | 25 + > > scripts/dpdk-quickstart.py | 996 +++++++++++++++++++++++++++++++++++++ > > 2 files changed, 1021 insertions(+) > > create mode 100755 scripts/dpdk-quickstart.py