From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail1.windriver.com (mail1.windriver.com [147.11.146.13]) by mail.openembedded.org (Postfix) with ESMTP id A09F975791 for ; Fri, 24 Jul 2015 08:26:34 +0000 (UTC) Received: from ALA-HCA.corp.ad.wrs.com (ala-hca.corp.ad.wrs.com [147.11.189.40]) by mail1.windriver.com (8.15.1/8.15.1) with ESMTPS id t6O8QZUs021696 (version=TLSv1 cipher=AES128-SHA bits=128 verify=FAIL) for ; Fri, 24 Jul 2015 01:26:35 -0700 (PDT) Received: from [128.224.162.176] (128.224.162.176) by ALA-HCA.corp.ad.wrs.com (147.11.189.40) with Microsoft SMTP Server id 14.3.235.1; Fri, 24 Jul 2015 01:26:24 -0700 Message-ID: <55B1F6B4.2000809@windriver.com> Date: Fri, 24 Jul 2015 16:26:28 +0800 From: wenzong fan User-Agent: Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: "'Patches and discussions about the oe-core layer'" References: <1435558955-30612-1-git-send-email-wenzong.fan@windriver.com> <55B1F295.6080004@windriver.com> In-Reply-To: <55B1F295.6080004@windriver.com> Subject: Re: [PATCH] nfs-utils: debianize start-statd X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Jul 2015 08:26:42 -0000 Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit On 07/24/2015 04:08 PM, wenzong fan wrote: > Ping ... Please ignore the "ping" request, this one has been merged. Thanks Wenzong > > On 06/29/2015 02:22 PM, wenzong.fan@windriver.com wrote: >> From: Li Wang >> >> make start-statd command to use nfscommon configure, too. >> >> Signed-off-by: Henrik Riomar >> Signed-off-by: Li Wang >> Signed-off-by: Roy Li >> Signed-off-by: Wenzong Fan >> --- >> .../files/nfs-utils-debianize-start-statd.patch | 41 >> ++++++++++++++++++++++ >> .../nfs-utils/nfs-utils_1.3.1.bb | 1 + >> 2 files changed, 42 insertions(+) >> create mode 100644 >> meta/recipes-connectivity/nfs-utils/files/nfs-utils-debianize-start-statd.patch >> >> >> diff --git >> a/meta/recipes-connectivity/nfs-utils/files/nfs-utils-debianize-start-statd.patch >> b/meta/recipes-connectivity/nfs-utils/files/nfs-utils-debianize-start-statd.patch >> >> new file mode 100644 >> index 0000000..5a2d5c8 >> --- /dev/null >> +++ >> b/meta/recipes-connectivity/nfs-utils/files/nfs-utils-debianize-start-statd.patch >> >> @@ -0,0 +1,41 @@ >> +[PATCH] nfs-utils: debianize start-statd >> + >> +Upstream-status: Pending >> + >> +make start-statd command to use nfscommon configure, too. >> + >> +Signed-off-by: Henrik Riomar >> +Signed-off-by: Li Wang >> +Signed-off-by: Roy Li >> +Signed-off-by: Wenzong Fan >> +--- >> + utils/statd/start-statd | 9 ++++++++- >> + 1 file changed, 8 insertions(+), 1 deletion(-) >> + >> +diff --git a/utils/statd/start-statd b/utils/statd/start-statd >> +index ec9383b..3969b8c 100755 >> +--- a/utils/statd/start-statd >> ++++ b/utils/statd/start-statd >> +@@ -6,6 +6,13 @@ >> + # site. >> + PATH="/sbin:/usr/sbin:/bin:/usr/bin" >> + >> ++# Read config >> ++DEFAULTFILE=/etc/default/nfs-common >> ++NEED_IDMAPD= >> ++if [ -f $DEFAULTFILE ]; then >> ++ . $DEFAULTFILE >> ++fi >> ++ >> + # First try systemd if it's installed. >> + if systemctl --help >/dev/null 2>&1; then >> + # Quit only if the call worked. >> +@@ -13,4 +20,4 @@ if systemctl --help >/dev/null 2>&1; then >> + fi >> + >> + # Fall back to launching it ourselves. >> +-exec rpc.statd --no-notify >> ++exec rpc.statd --no-notify $STATDOPTS >> +-- >> +1.9.1 >> + >> diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.1.bb >> b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.1.bb >> index 6f64e9d..0bcd65e 100644 >> --- a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.1.bb >> +++ b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.1.bb >> @@ -29,6 +29,7 @@ SRC_URI = >> "${KERNELORG_MIRROR}/linux/utils/nfs-utils/${PV}/nfs-utils-${PV}.tar.x >> file://nfs-mountd.service \ >> file://nfs-statd.service \ >> >> file://nfs-utils-Do-not-pass-CFLAGS-to-gcc-while-building.patch \ >> + file://nfs-utils-debianize-start-statd.patch \ >> " >> >> SRC_URI[md5sum] = "8de676b9ff34b8f9addc1d0800fabdf8" >> > >