From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from wout1-smtp.messagingengine.com (wout1-smtp.messagingengine.com [64.147.123.24]) by dpdk.org (Postfix) with ESMTP id 8FCD34C95; Thu, 25 Oct 2018 11:14:08 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id 517C11358; Thu, 25 Oct 2018 05:14:07 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Thu, 25 Oct 2018 05:14:07 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=rQe/cCyApJsL10QM1q/gCPwbaouSmXUvccgecw2wQXg=; b=hWeNmq5kj2SZ 8wn8LCZriPFxnIYIasSvXYCJUB+30RyF7MgwVJVlTbbyKSJOLXs8NP8dTvXb9Hqh 9uuZC+S2QAmj3ooSUhgULgtdNcDhI/28U/Pf0WlS5o17iwZKgM5WbsbDBf0THVxk zfKTWBafo4PpTZYOjb5weHoZ/rOwLsI= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=rQe/cCyApJsL10QM1q/gCPwbaouSmXUvccgecw2wQ Xg=; b=vt1BQJlfPAQZuLMQM4FXA3lcO8nFBlY2FmJ2xMl0JzPh/bP8vk63nxRrH Ixosk0jVpf3RHze2+G0oL22I96PUkSOGekQ78OWhKHTu0AXDKOlgemAz4CDo2qFG mOk+xXvO5SX5U8KScd0wRNg5szlG+IbArfse+r9rl9p4Zl7E2Xz2z/E01yPNkxXK PYj5XNgkaovvoqqMbUwaSw/E1suWdv1zBgZFJxYiAoXyYwlbSrmY0yz3HMckWtr/ xr+yc5vMOt3zzmwQGG1cri/sB+wIlEL9qpOSNc4I4gPRn83sK+iHMGgDRHNOJqgv wQHxFy2HPgdDlVEyNst7nLTy/5QLA== X-ME-Sender: X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 9D08D102EA; Thu, 25 Oct 2018 05:14:05 -0400 (EDT) From: Thomas Monjalon To: "Hunt, David" Cc: web@dpdk.org, "dev@dpdk.org" , "Mcnamara, John" Date: Thu, 25 Oct 2018 11:14:08 +0200 Message-ID: <2437619.RhQcZ1ZtzN@xps> In-Reply-To: <715da352-68b3-11b1-61be-6abf01485ea8@intel.com> References: <20180803114114.45695-1-david.hunt@intel.com> <715da352-68b3-11b1-61be-6abf01485ea8@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-web] [PATCH v1] add dpdk-quickstart python script X-BeenThere: web@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK website maintenance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Oct 2018 09:14:09 -0000 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