All of lore.kernel.org
 help / color / mirror / Atom feed
* [OE-core][PATCH 1/3] populate_sdk_ext.bbclass: add ESDK_MANIFEST_EXCLUDES
@ 2020-09-29  3:22 Chen Qi
  2020-09-29  3:22 ` [OE-core][PATCH 2/3] testsdk.py: remove workspace/sources to avoid failure in case of multilib Chen Qi
  2020-09-29  3:22 ` [OE-core][PATCH 3/3] nfs-utils: fix configure error on some hosts Chen Qi
  0 siblings, 2 replies; 6+ messages in thread
From: Chen Qi @ 2020-09-29  3:22 UTC (permalink / raw)
  To: openembedded-core

Add ESDK_MANIFEST_EXCLUDES to enable excluding items in sdk-conf-manifest.

By default, files under conf/ are all added to sdk-conf-manifest, as the
manifest file is set to 'conf/*'.

However, there are situations where some configuration files under conf/
directory are not intended to be added to sdk-conf-manifest, thus adding
ESDK_MANIFEST_EXCLUDES to enable users to do this.

This variable takes the form of glob matching.
e.g.
ESDK_MANIFEST_EXCLUDES = "conf/autogen*"
This would exclude all files under conf/ starting with 'autogen' from
sdk-conf-manifest.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
 meta/classes/populate_sdk_ext.bbclass | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index d659b6940a..6f35b612c2 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -522,12 +522,18 @@ python copy_buildsystem () {
     # sdk_ext_postinst() below) thus the checksum we take here would always
     # be different.
     manifest_file_list = ['conf/*']
+    esdk_manifest_excludes = (d.getVar('ESDK_MANIFEST_EXCLUDES') or '').split()
+    esdk_manifest_excludes_list = []
+    for exclude_item in esdk_manifest_excludes:
+        esdk_manifest_excludes_list += glob.glob(os.path.join(baseoutpath, exclude_item))
     manifest_file = os.path.join(baseoutpath, 'conf', 'sdk-conf-manifest')
     with open(manifest_file, 'w') as f:
         for item in manifest_file_list:
             for fn in glob.glob(os.path.join(baseoutpath, item)):
                 if fn == manifest_file:
                     continue
+                if fn in esdk_manifest_excludes_list:
+                    continue
                 chksum = bb.utils.sha256_file(fn)
                 f.write('%s\t%s\n' % (chksum, os.path.relpath(fn, baseoutpath)))
 }
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [OE-core][PATCH 2/3] testsdk.py: remove workspace/sources to avoid failure in case of multilib
  2020-09-29  3:22 [OE-core][PATCH 1/3] populate_sdk_ext.bbclass: add ESDK_MANIFEST_EXCLUDES Chen Qi
@ 2020-09-29  3:22 ` Chen Qi
  2020-09-29  3:22 ` [OE-core][PATCH 3/3] nfs-utils: fix configure error on some hosts Chen Qi
  1 sibling, 0 replies; 6+ messages in thread
From: Chen Qi @ 2020-09-29  3:22 UTC (permalink / raw)
  To: openembedded-core

When multilib is enabled, there are multiple environment scripts, and the
test cases for eSDK are executed for each environment script.

And we will have the following problem when executing test cases for the
second environment script.

  ERROR: Source tree path /.../workspace/sources/librdfa already exists and is not empty

So after executing test cases for one environment, we clean up the sources
diretory to avoid such failure.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
 meta/lib/oeqa/sdkext/testsdk.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/lib/oeqa/sdkext/testsdk.py b/meta/lib/oeqa/sdkext/testsdk.py
index c5c46df6cd..ffd185ec55 100644
--- a/meta/lib/oeqa/sdkext/testsdk.py
+++ b/meta/lib/oeqa/sdkext/testsdk.py
@@ -99,6 +99,9 @@ class TestSDKExt(TestSDKBase):
             if not result.wasSuccessful():
                 fail = True
 
+            # Clean the workspace/sources to avoid `devtool add' failure because of non-empty source directory
+            bb.utils.remove(sdk_dir+'workspace/sources', True)
+
         if fail:
             bb.fatal("%s - FAILED - check the task log and the commands log" % pn)
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [OE-core][PATCH 3/3] nfs-utils: fix configure error on some hosts
  2020-09-29  3:22 [OE-core][PATCH 1/3] populate_sdk_ext.bbclass: add ESDK_MANIFEST_EXCLUDES Chen Qi
  2020-09-29  3:22 ` [OE-core][PATCH 2/3] testsdk.py: remove workspace/sources to avoid failure in case of multilib Chen Qi
@ 2020-09-29  3:22 ` Chen Qi
  2020-09-29  4:23   ` Khem Raj
  1 sibling, 1 reply; 6+ messages in thread
From: Chen Qi @ 2020-09-29  3:22 UTC (permalink / raw)
  To: openembedded-core

nfs-utils' configure.ac hardcodes the rpcgen's searching path. However,
on some hosts, rpcgen is missing but SDK provides one. We should avoid
the hardcoding so that nfs-utils could be built correctly under SDK.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
 ...gure.ac-avoid-hardcoding-rpcgen-path.patch | 31 +++++++++++++++++++
 .../nfs-utils/nfs-utils_2.5.1.bb              |  1 +
 2 files changed, 32 insertions(+)
 create mode 100644 meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch

diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch b/meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch
new file mode 100644
index 0000000000..5602e5be57
--- /dev/null
+++ b/meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch
@@ -0,0 +1,31 @@
+From b9049fbf051e559941298afd57ec43d6f6a5490d Mon Sep 17 00:00:00 2001
+From: Chen Qi <Qi.Chen@windriver.com>
+Date: Wed, 29 Apr 2020 08:56:05 +0000
+Subject: [PATCH] configure.ac: avoid hardcoding rpcgen path
+
+Upstream-Status: Pending
+
+Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
+---
+ configure.ac | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index f9efdb7..8e8aeaa 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -152,8 +152,9 @@ AC_ARG_WITH(rpcgen,
+ 	rpcgen_cflags=-Werror=strict-prototypes
+ 	RPCGEN_PATH=
+ 	if test "$rpcgen_path" = "yes"; then
+-	    for p in /usr/local/bin/rpcgen /usr/bin/rpcgen /bin/rpcgen
+-	    do if test -f $p ; then RPCGEN_PATH=$p ; break; fi ; done
++	    #for p in /usr/local/bin/rpcgen /usr/bin/rpcgen /bin/rpcgen
++	    #do if test -f $p ; then RPCGEN_PATH=$p ; break; fi ; done
++	    RPCGEN_PATH=`which rpcgen`
+ 		if test -z "$RPCGEN_PATH"; then
+ 			AC_MSG_ERROR([Please install rpcgen or use --with-rpcgen])
+ 		fi
+-- 
+2.24.1
+
diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb b/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb
index b8ad23a0d8..b06ce2d0af 100644
--- a/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb
+++ b/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb
@@ -30,6 +30,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/nfs-utils/${PV}/nfs-utils-${PV}.tar.x
            file://bugfix-adjust-statd-service-name.patch \
            file://0001-Makefile.am-fix-undefined-function-for-libnsm.a.patch \
            file://clang-warnings.patch \
+           file://0001-configure.ac-avoid-hardcoding-rpcgen-path.patch \
            "
 SRC_URI[sha256sum] = "0f1c8170e16a07d9836bbf0836d48d0c842b6f0e0e8b18748f099751851d30c4"
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [OE-core][PATCH 3/3] nfs-utils: fix configure error on some hosts
  2020-09-29  3:22 ` [OE-core][PATCH 3/3] nfs-utils: fix configure error on some hosts Chen Qi
@ 2020-09-29  4:23   ` Khem Raj
  2020-09-29  5:08     ` Chen Qi
       [not found]     ` <16392890750B0920.5304@lists.openembedded.org>
  0 siblings, 2 replies; 6+ messages in thread
From: Khem Raj @ 2020-09-29  4:23 UTC (permalink / raw)
  To: Chen Qi; +Cc: Patches and discussions about the oe-core layer

On Mon, Sep 28, 2020 at 8:22 PM Chen Qi <Qi.Chen@windriver.com> wrote:
>
> nfs-utils' configure.ac hardcodes the rpcgen's searching path. However,
> on some hosts, rpcgen is missing but SDK provides one. We should avoid
> the hardcoding so that nfs-utils could be built correctly under SDK.
>

perhaps its better to always require --with-rpcgen there is no need to
look into host paths

> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
> ---
>  ...gure.ac-avoid-hardcoding-rpcgen-path.patch | 31 +++++++++++++++++++
>  .../nfs-utils/nfs-utils_2.5.1.bb              |  1 +
>  2 files changed, 32 insertions(+)
>  create mode 100644 meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch
>
> diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch b/meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch
> new file mode 100644
> index 0000000000..5602e5be57
> --- /dev/null
> +++ b/meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch
> @@ -0,0 +1,31 @@
> +From b9049fbf051e559941298afd57ec43d6f6a5490d Mon Sep 17 00:00:00 2001
> +From: Chen Qi <Qi.Chen@windriver.com>
> +Date: Wed, 29 Apr 2020 08:56:05 +0000
> +Subject: [PATCH] configure.ac: avoid hardcoding rpcgen path
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
> +---
> + configure.ac | 5 +++--
> + 1 file changed, 3 insertions(+), 2 deletions(-)
> +
> +diff --git a/configure.ac b/configure.ac
> +index f9efdb7..8e8aeaa 100644
> +--- a/configure.ac
> ++++ b/configure.ac
> +@@ -152,8 +152,9 @@ AC_ARG_WITH(rpcgen,
> +       rpcgen_cflags=-Werror=strict-prototypes
> +       RPCGEN_PATH=
> +       if test "$rpcgen_path" = "yes"; then
> +-          for p in /usr/local/bin/rpcgen /usr/bin/rpcgen /bin/rpcgen
> +-          do if test -f $p ; then RPCGEN_PATH=$p ; break; fi ; done
> ++          #for p in /usr/local/bin/rpcgen /usr/bin/rpcgen /bin/rpcgen
> ++          #do if test -f $p ; then RPCGEN_PATH=$p ; break; fi ; done
> ++          RPCGEN_PATH=`which rpcgen`
> +               if test -z "$RPCGEN_PATH"; then
> +                       AC_MSG_ERROR([Please install rpcgen or use --with-rpcgen])
> +               fi
> +--
> +2.24.1
> +
> diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb b/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb
> index b8ad23a0d8..b06ce2d0af 100644
> --- a/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb
> +++ b/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb
> @@ -30,6 +30,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/nfs-utils/${PV}/nfs-utils-${PV}.tar.x
>             file://bugfix-adjust-statd-service-name.patch \
>             file://0001-Makefile.am-fix-undefined-function-for-libnsm.a.patch \
>             file://clang-warnings.patch \
> +           file://0001-configure.ac-avoid-hardcoding-rpcgen-path.patch \
>             "
>  SRC_URI[sha256sum] = "0f1c8170e16a07d9836bbf0836d48d0c842b6f0e0e8b18748f099751851d30c4"
>
> --
> 2.17.1
>
>
> 
>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [OE-core][PATCH 3/3] nfs-utils: fix configure error on some hosts
  2020-09-29  4:23   ` Khem Raj
@ 2020-09-29  5:08     ` Chen Qi
       [not found]     ` <16392890750B0920.5304@lists.openembedded.org>
  1 sibling, 0 replies; 6+ messages in thread
From: Chen Qi @ 2020-09-29  5:08 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

On 09/29/2020 12:23 PM, Khem Raj wrote:
> On Mon, Sep 28, 2020 at 8:22 PM Chen Qi <Qi.Chen@windriver.com> wrote:
>> nfs-utils' configure.ac hardcodes the rpcgen's searching path. However,
>> on some hosts, rpcgen is missing but SDK provides one. We should avoid
>> the hardcoding so that nfs-utils could be built correctly under SDK.
>>
> perhaps its better to always require --with-rpcgen there is no need to
> look into host paths

I agree. Thanks.
I'll send out V2.

Regards,
Chen Qi

>> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
>> ---
>>   ...gure.ac-avoid-hardcoding-rpcgen-path.patch | 31 +++++++++++++++++++
>>   .../nfs-utils/nfs-utils_2.5.1.bb              |  1 +
>>   2 files changed, 32 insertions(+)
>>   create mode 100644 meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch
>>
>> diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch b/meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch
>> new file mode 100644
>> index 0000000000..5602e5be57
>> --- /dev/null
>> +++ b/meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch
>> @@ -0,0 +1,31 @@
>> +From b9049fbf051e559941298afd57ec43d6f6a5490d Mon Sep 17 00:00:00 2001
>> +From: Chen Qi <Qi.Chen@windriver.com>
>> +Date: Wed, 29 Apr 2020 08:56:05 +0000
>> +Subject: [PATCH] configure.ac: avoid hardcoding rpcgen path
>> +
>> +Upstream-Status: Pending
>> +
>> +Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
>> +---
>> + configure.ac | 5 +++--
>> + 1 file changed, 3 insertions(+), 2 deletions(-)
>> +
>> +diff --git a/configure.ac b/configure.ac
>> +index f9efdb7..8e8aeaa 100644
>> +--- a/configure.ac
>> ++++ b/configure.ac
>> +@@ -152,8 +152,9 @@ AC_ARG_WITH(rpcgen,
>> +       rpcgen_cflags=-Werror=strict-prototypes
>> +       RPCGEN_PATH=
>> +       if test "$rpcgen_path" = "yes"; then
>> +-          for p in /usr/local/bin/rpcgen /usr/bin/rpcgen /bin/rpcgen
>> +-          do if test -f $p ; then RPCGEN_PATH=$p ; break; fi ; done
>> ++          #for p in /usr/local/bin/rpcgen /usr/bin/rpcgen /bin/rpcgen
>> ++          #do if test -f $p ; then RPCGEN_PATH=$p ; break; fi ; done
>> ++          RPCGEN_PATH=`which rpcgen`
>> +               if test -z "$RPCGEN_PATH"; then
>> +                       AC_MSG_ERROR([Please install rpcgen or use --with-rpcgen])
>> +               fi
>> +--
>> +2.24.1
>> +
>> diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb b/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb
>> index b8ad23a0d8..b06ce2d0af 100644
>> --- a/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb
>> +++ b/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb
>> @@ -30,6 +30,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/nfs-utils/${PV}/nfs-utils-${PV}.tar.x
>>              file://bugfix-adjust-statd-service-name.patch \
>>              file://0001-Makefile.am-fix-undefined-function-for-libnsm.a.patch \
>>              file://clang-warnings.patch \
>> +           file://0001-configure.ac-avoid-hardcoding-rpcgen-path.patch \
>>              "
>>   SRC_URI[sha256sum] = "0f1c8170e16a07d9836bbf0836d48d0c842b6f0e0e8b18748f099751851d30c4"
>>
>> --
>> 2.17.1
>>
>>
>> 
>>


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [OE-core][PATCH 3/3] nfs-utils: fix configure error on some hosts
       [not found]     ` <16392890750B0920.5304@lists.openembedded.org>
@ 2020-09-29  5:13       ` Chen Qi
  0 siblings, 0 replies; 6+ messages in thread
From: Chen Qi @ 2020-09-29  5:13 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 4402 bytes --]

Just found that it's already been fixed by the following patch.

commit 2e0b4c99f5d49c84a3a2992fb686d27693f3d8c6
Author: Taras Kondratiuk <takondra@cisco.com>
Date:   Fri Jul 10 10:41:16 2020 -0700

     nfs-utils: use rpcgen tool from HOSTTOOLS_DIR

     nfs-utils configure searches for rpcgen tool only in default locations:
     "/usr/local/bin/rpcgen /usr/bin/rpcgen /bin/rpcgen".
     On some of our build machines the rpcgen is not present there and
     configure fails:
     | configure: error: Please install rpcgen or use --with-rpcgen

     HOSTTOOLS_DIR already contains a correct pointer to host rpcgen 
tool, so
     use it from there.

     Signed-off-by: Taras Kondratiuk <takondra@cisco.com>
     Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>

Please ignore my patch.

Best Regards,
Chen Qi

On 09/29/2020 01:08 PM, Chen Qi wrote:
> On 09/29/2020 12:23 PM, Khem Raj wrote:
>> On Mon, Sep 28, 2020 at 8:22 PM Chen Qi <Qi.Chen@windriver.com> wrote:
>>> nfs-utils' configure.ac hardcodes the rpcgen's searching path. However,
>>> on some hosts, rpcgen is missing but SDK provides one. We should avoid
>>> the hardcoding so that nfs-utils could be built correctly under SDK.
>>>
>> perhaps its better to always require --with-rpcgen there is no need to
>> look into host paths
>
> I agree. Thanks.
> I'll send out V2.
>
> Regards,
> Chen Qi
>
>>> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
>>> ---
>>>   ...gure.ac-avoid-hardcoding-rpcgen-path.patch | 31 
>>> +++++++++++++++++++
>>>   .../nfs-utils/nfs-utils_2.5.1.bb              |  1 +
>>>   2 files changed, 32 insertions(+)
>>>   create mode 100644 
>>> meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch
>>>
>>> diff --git 
>>> a/meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch 
>>> b/meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch 
>>>
>>> new file mode 100644
>>> index 0000000000..5602e5be57
>>> --- /dev/null
>>> +++ 
>>> b/meta/recipes-connectivity/nfs-utils/nfs-utils/0001-configure.ac-avoid-hardcoding-rpcgen-path.patch
>>> @@ -0,0 +1,31 @@
>>> +From b9049fbf051e559941298afd57ec43d6f6a5490d Mon Sep 17 00:00:00 2001
>>> +From: Chen Qi <Qi.Chen@windriver.com>
>>> +Date: Wed, 29 Apr 2020 08:56:05 +0000
>>> +Subject: [PATCH] configure.ac: avoid hardcoding rpcgen path
>>> +
>>> +Upstream-Status: Pending
>>> +
>>> +Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
>>> +---
>>> + configure.ac | 5 +++--
>>> + 1 file changed, 3 insertions(+), 2 deletions(-)
>>> +
>>> +diff --git a/configure.ac b/configure.ac
>>> +index f9efdb7..8e8aeaa 100644
>>> +--- a/configure.ac
>>> ++++ b/configure.ac
>>> +@@ -152,8 +152,9 @@ AC_ARG_WITH(rpcgen,
>>> +       rpcgen_cflags=-Werror=strict-prototypes
>>> +       RPCGEN_PATH=
>>> +       if test "$rpcgen_path" = "yes"; then
>>> +-          for p in /usr/local/bin/rpcgen /usr/bin/rpcgen /bin/rpcgen
>>> +-          do if test -f $p ; then RPCGEN_PATH=$p ; break; fi ; done
>>> ++          #for p in /usr/local/bin/rpcgen /usr/bin/rpcgen /bin/rpcgen
>>> ++          #do if test -f $p ; then RPCGEN_PATH=$p ; break; fi ; done
>>> ++          RPCGEN_PATH=`which rpcgen`
>>> +               if test -z "$RPCGEN_PATH"; then
>>> +                       AC_MSG_ERROR([Please install rpcgen or use 
>>> --with-rpcgen])
>>> +               fi
>>> +--
>>> +2.24.1
>>> +
>>> diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb 
>>> b/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb
>>> index b8ad23a0d8..b06ce2d0af 100644
>>> --- a/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb
>>> +++ b/meta/recipes-connectivity/nfs-utils/nfs-utils_2.5.1.bb
>>> @@ -30,6 +30,7 @@ SRC_URI = 
>>> "${KERNELORG_MIRROR}/linux/utils/nfs-utils/${PV}/nfs-utils-${PV}.tar.x
>>>              file://bugfix-adjust-statd-service-name.patch \
>>> file://0001-Makefile.am-fix-undefined-function-for-libnsm.a.patch \
>>>              file://clang-warnings.patch \
>>> + file://0001-configure.ac-avoid-hardcoding-rpcgen-path.patch \
>>>              "
>>>   SRC_URI[sha256sum] = 
>>> "0f1c8170e16a07d9836bbf0836d48d0c842b6f0e0e8b18748f099751851d30c4"
>>>
>>> -- 
>>> 2.17.1
>>>
>>>
>>>
>>>
>
>
>
> 
>


[-- Attachment #2: Type: text/html, Size: 9156 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-09-29  5:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-29  3:22 [OE-core][PATCH 1/3] populate_sdk_ext.bbclass: add ESDK_MANIFEST_EXCLUDES Chen Qi
2020-09-29  3:22 ` [OE-core][PATCH 2/3] testsdk.py: remove workspace/sources to avoid failure in case of multilib Chen Qi
2020-09-29  3:22 ` [OE-core][PATCH 3/3] nfs-utils: fix configure error on some hosts Chen Qi
2020-09-29  4:23   ` Khem Raj
2020-09-29  5:08     ` Chen Qi
     [not found]     ` <16392890750B0920.5304@lists.openembedded.org>
2020-09-29  5:13       ` Chen Qi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.