From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: Re: [PATCH] SDK: Add scripts to initialize DPDK runtime Date: Mon, 12 Dec 2016 21:12:22 +0000 Message-ID: <20161212211222.GA50316@bricha3-MOBL3.ger.corp.intel.com> References: <1481570642-15138-1-git-send-email-lboccass@brocade.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, Christian Ehrhardt To: Luca Boccassi Return-path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 9A84C370 for ; Mon, 12 Dec 2016 22:12:26 +0100 (CET) Content-Disposition: inline In-Reply-To: <1481570642-15138-1-git-send-email-lboccass@brocade.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" On Mon, Dec 12, 2016 at 07:24:02PM +0000, Luca Boccassi wrote: > From: Christian Ehrhardt > > A tools/init directory is added with dpdk-init, a script that can be > used to initialize a DPDK runtime environment. 2 config files with > default options, dpdk.conf and interfaces, are provided as well > together with a SysV init script and a systemd service unit. > > Signed-off-by: Luca Boccassi > Signed-off-by: Christian Ehrhardt > --- > new file mode 100755 > index 0000000..89e0399 > --- /dev/null > +++ b/tools/init/dpdk-init.in > @@ -0,0 +1,256 @@ > +#!/bin/sh > +# > +# dpdk-init: startup script to initialize a dpdk runtime environment > +# > +# Copyright 2015-2016 Canonical Ltd. > +# Autor: Stefan Bader > +# Autor: Christian Ehrhardt > +# > +# This program is free software: you can redistribute it and/or modify > +# it under the terms of the GNU General Public License version 3, > +# as published by the Free Software Foundation. > +# > +# This program is distributed in the hope that it will be useful, > +# but WITHOUT ANY WARRANTY; without even the implied warranty of > +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > +# GNU General Public License for more details. > +# > +# You should have received a copy of the GNU General Public License > +# along with this program. If not, see . > +# Any particular reason this is licensed under GPL v3. AFAIK, all the userspace code in DPDK is licensed under a BSD license (with the exception of some dual licensed stuff which is shared between kernel and userspace). I just worry that adding additional licenses into the mix may confuse things. Regards, /Bruce