From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga105.fm.intel.com with ESMTP; 12 Dec 2016 13:12:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,338,1477983600"; d="scan'208";a="1080920118" Received: from bricha3-mobl3.ger.corp.intel.com ([10.252.26.190]) by fmsmga001.fm.intel.com with SMTP; 12 Dec 2016 13:12:23 -0800 Received: by (sSMTP sendmail emulation); Mon, 12 Dec 2016 21:12:23 +0000 Date: Mon, 12 Dec 2016 21:12:22 +0000 From: Bruce Richardson To: Luca Boccassi Cc: dev@dpdk.org, Christian Ehrhardt 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 Content-Disposition: inline In-Reply-To: <1481570642-15138-1-git-send-email-lboccass@brocade.com> Organization: Intel Research and =?iso-8859-1?Q?De=ACvel?= =?iso-8859-1?Q?opment?= Ireland Ltd. User-Agent: Mutt/1.7.1 (2016-10-04) Subject: Re: [dpdk-dev] [PATCH] SDK: Add scripts to initialize DPDK runtime 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: Mon, 12 Dec 2016 21:12:27 -0000 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