From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from tama500.ecl.ntt.co.jp (tama500.ecl.ntt.co.jp [129.60.39.148]) by dpdk.org (Postfix) with ESMTP id 2FBF1374E for ; Tue, 2 Oct 2018 07:49:31 +0200 (CEST) Received: from vc2.ecl.ntt.co.jp (vc2.ecl.ntt.co.jp [129.60.86.154]) by tama500.ecl.ntt.co.jp (8.13.8/8.13.8) with ESMTP id w925nUm1020634; Tue, 2 Oct 2018 14:49:30 +0900 Received: from vc2.ecl.ntt.co.jp (localhost [127.0.0.1]) by vc2.ecl.ntt.co.jp (Postfix) with ESMTP id 8F8896388A5; Tue, 2 Oct 2018 14:49:30 +0900 (JST) Received: from jcms-pop21.ecl.ntt.co.jp (jcms-pop21.ecl.ntt.co.jp [129.60.87.134]) by vc2.ecl.ntt.co.jp (Postfix) with ESMTP id 84358638A5E; Tue, 2 Oct 2018 14:49:30 +0900 (JST) Received: from [IPv6:::1] (watercress.nslab.ecl.ntt.co.jp [129.60.13.73]) by jcms-pop21.ecl.ntt.co.jp (Postfix) with ESMTPSA id 802E240019E; Tue, 2 Oct 2018 14:49:30 +0900 (JST) References: <20180923112233.2D71.277DD91C@valinux.co.jp> <20180923113503.2D8C.277DD91C@valinux.co.jp> From: Yasufumi Ogawa Message-ID: Date: Tue, 2 Oct 2018 14:47:22 +0900 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: <20180923113503.2D8C.277DD91C@valinux.co.jp> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-CC-Mail-RelayStamp: 1 To: Itsuro ODA , spp@dpdk.org X-TM-AS-MML: disable Subject: Re: [spp] [PATCH v2 6/9] spp-ctl: executable X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Oct 2018 05:49:32 -0000 > From: Itsuro Oda > You cannot include executable because it is not allowed by checkpatches.sh to set execute permission for source files. Thanks > Signed-off-by: Itsuro Oda > --- > src/spp-ctl/spp-ctl | 11 +++++++++++ > 1 file changed, 11 insertions(+) > create mode 100755 src/spp-ctl/spp-ctl > > diff --git a/src/spp-ctl/spp-ctl b/src/spp-ctl/spp-ctl > new file mode 100755 > index 0000000..645611b > --- /dev/null > +++ b/src/spp-ctl/spp-ctl > @@ -0,0 +1,11 @@ > +#!/usr/bin/python3 > +# SPDX-License-Identifier: BSD-3-Clause > +# Copyright(c) 2018 Nippon Telegraph and Telephone Corporation > + > +import sys > + > +from spp_ctl import main > + > + > +if __name__ == "__main__": > + sys.exit(main()) >