[OE-core] [PATCH] qemu: always define unknown_lock_type

2020-09-09 Thread Yu, Mingli
From: Mingli Yu When use gcc 10.1.0 and debug build is enabled, there comes below build failure: | /usr/lib/gcc/x86_64-wrs-linux/10.1.0/../../../../x86_64-wrs-linux/bin/ld.bfd: /mnt/build/tmp/work/x86_64-linux/qemu-system-native/5.1.0-r0/qemu-5.1.0/fsdev/qemu-fsdev-throttle.c:25: undefined refe

Re: [OE-core] [PATCH] bitbake.conf: set the default pigz thread

2020-08-11 Thread Yu, Mingli
On 8/11/20 4:19 PM, Richard Purdie wrote: On Tue, 2020-08-11 at 16:09 +0800, Yu, Mingli wrote: Hi RP, On 8/11/20 3:57 PM, Richard Purdie wrote: On Tue, 2020-08-11 at 15:22 +0800, Yu, Mingli wrote: From: Mingli Yu pigz, which stands for parallel implementation of gzip, is a fully

Re: [OE-core] [PATCH] bitbake.conf: set the default pigz thread

2020-08-11 Thread Yu, Mingli
Hi RP, On 8/11/20 3:57 PM, Richard Purdie wrote: On Tue, 2020-08-11 at 15:22 +0800, Yu, Mingli wrote: From: Mingli Yu pigz, which stands for parallel implementation of gzip, is a fully functional replacement for gzip that exploits multiple processors and multiple cores to the hilt when

[OE-core] [PATCH] bitbake.conf: set the default pigz thread

2020-08-11 Thread Yu, Mingli
From: Mingli Yu pigz, which stands for parallel implementation of gzip, is a fully functional replacement for gzip that exploits multiple processors and multiple cores to the hilt when compressing data. do_package uses pigz to compress data to speed up the time if there is pigz available on the

[OE-core] [PATCH 2/2] Revert "python3: define a profile directory path"

2020-07-22 Thread Yu, Mingli
From: Mingli Yu After ccache upgrade to 3.7.11, there is below logic introduced. 58895dc Add knowledge about -fprofile-{correction,reorder-functions,values} And the python3 ccache build issue [1] is fixed in ccache 3.7.11, so there is no need to define a profile directory path for python3 any mo

[OE-core] [PATCH 1/2] ccache: Upgrade to 3.7.11

2020-07-22 Thread Yu, Mingli
From: Mingli Yu Bug fixes: Added knowledge about -fprofile-{correction,reorder-functions,values}. ccache now handles the Intel compiler option -xCODE (where CODE is a processor feature code) correctly. Added support for NVCC's -Werror and --Werror options. Signed-off-by: Mingli Yu --- .

Re: [OE-core] [PATCH v3] netbase: use git fetcher

2020-07-10 Thread Yu, Mingli
Please ignore this patch. Thanks, On 7/10/20 3:01 PM, Yu, Mingli wrote: From: Mingli Yu Use git repo as the the previous URL only stores the latest source file and fails to locate the source tar file if we don't upgrade timely. --- meta/recipes-core/netbase/netbase_6.1.bb

[OE-core] [PATCH v3] netbase: use git fetcher

2020-07-10 Thread Yu, Mingli
From: Mingli Yu Use git repo as the the previous URL only stores the latest source file and fails to locate the source tar file if we don't upgrade timely. --- meta/recipes-core/netbase/netbase_6.1.bb | 19 --- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/meta/r

[OE-core] [PATCH] python3: define a profile directory path

2020-07-09 Thread Yu, Mingli
From: Mingli Yu After ccache upgrade to 3.7.10, there comes below error when enable ccache to build python3 and check [1] and [2] for more details. | Python-3.8.3/Modules/_contextvarsmodule.c:43:1: error: source locations for function 'PyInit__contextvars' have changed, the profile data may be

Re: [OE-core] [PATCH v2] netbase: use git fetcher

2020-07-06 Thread Yu, Mingli
On 7/6/20 2:52 PM, Yu, Mingli wrote: On 7/2/20 12:35 AM, Richard Purdie wrote: On Wed, 2020-07-01 at 10:05 +0800, Yu, Mingli wrote: On 7/1/20 4:08 AM, Richard Purdie wrote: On Mon, 2020-06-29 at 12:31 +0800, Yu, Mingli wrote: From: Mingli Yu Use git repo as the the previous URL only

Re: [OE-core] [PATCH v2] netbase: use git fetcher

2020-07-05 Thread Yu, Mingli
On 7/2/20 12:35 AM, Richard Purdie wrote: On Wed, 2020-07-01 at 10:05 +0800, Yu, Mingli wrote: On 7/1/20 4:08 AM, Richard Purdie wrote: On Mon, 2020-06-29 at 12:31 +0800, Yu, Mingli wrote: From: Mingli Yu Use git repo as the the previous URL only stores the latest source file and fails

[OE-core] [PATCH v2] python3: add ldconfig rdepends for python3-ctypes

2020-07-01 Thread Yu, Mingli
From: Mingli Yu The ctypes module needs to use "ldconfig -p" to find the library path and it simply has below logic if no ldconfig installed. except OSError: pass Before the patch: >>> from ctypes.util import find_library >>> lib_path = find_library('archive') >>> print(lib_path)

Re: [OE-core] [PATCH 2/2] python3: add ldconfig rdepends for python3-ctypes

2020-07-01 Thread Yu, Mingli
On 7/1/20 10:20 PM, Richard Purdie wrote: On Wed, 2020-07-01 at 10:33 +0800, Yu, Mingli wrote: From: Mingli Yu The ctypes module needs to use "ldconfig -p" to find the library path and it simply has below logic if no ldconfig installed. except OSError: pass Before

[OE-core] [PATCH 2/2] python3: add ldconfig rdepends for python3-ctypes

2020-06-30 Thread Yu, Mingli
From: Mingli Yu The ctypes module needs to use "ldconfig -p" to find the library path and it simply has below logic if no ldconfig installed. except OSError: pass Before the patch: >>> from ctypes.util import find_library >>> lib_path = find_library('archive') >>> print(lib_path)

[OE-core] [PATCH 1/2] python3-libarchive-c: add the missing rdepends

2020-06-30 Thread Yu, Mingli
From: Mingli Yu Add the missing rdepends to fix below error: # python3 [snip] >>> import libarchive [snip] ModuleNotFoundError: No module named 'ctypes' ModuleNotFoundError: No module named 'mmap' Signed-off-by: Mingli Yu --- meta/recipes-devtools/python/python3-libarchive-c_2.9.bb | 6 +

Re: [OE-core] [PATCH v2] netbase: use git fetcher

2020-06-30 Thread Yu, Mingli
On 7/1/20 4:08 AM, Richard Purdie wrote: On Mon, 2020-06-29 at 12:31 +0800, Yu, Mingli wrote: From: Mingli Yu Use git repo as the the previous URL only stores the latest source file and fails to locate the source tar file if we don't upgrade timely. Signed-off-by: Mingli Yu ---

[OE-core] [PATCH v2] netbase: use git fetcher

2020-06-28 Thread Yu, Mingli
From: Mingli Yu Use git repo as the the previous URL only stores the latest source file and fails to locate the source tar file if we don't upgrade timely. Signed-off-by: Mingli Yu --- meta/recipes-core/netbase/netbase_6.1.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --

Re: [OE-core] [PATCH] netbase: use git fetcher

2020-06-19 Thread Yu, Mingli
Ping. Thanks, On 6/15/20 9:49 AM, Yu, Mingli wrote: Hi RP, On 4/1/20 5:20 PM, Richard Purdie wrote: On Mon, 2020-03-16 at 17:24 +0800, mingli...@windriver.com wrote: From: Mingli Yu Use git repo as the the previous URL only stores the latest source file and fails to locate the source tar

Re: [OE-core] [PATCH] netbase: use git fetcher

2020-06-14 Thread Yu, Mingli
Hi RP, On 4/1/20 5:20 PM, Richard Purdie wrote: On Mon, 2020-03-16 at 17:24 +0800, mingli...@windriver.com wrote: From: Mingli Yu Use git repo as the the previous URL only stores the latest source file and fails to locate the source tar file if we don't upgrade timely. Signed-off-by: Mingli

Re: [OE-core] [PATCH] virglrenderer: correct REQUIRED_DISTRO_FEATURES

2020-06-11 Thread Yu, Mingli
On 6/11/20 4:14 PM, Alexander Kanavin wrote: On Thu, 11 Jun 2020 at 09:22, Yu, Mingli <mailto:mingli...@windriver.com>> wrote: > This is not an error, but expected behavior. virglrenderer-native only > works when opengl is in DISTRO_FEATURES and should be skippe

[OE-core] [PATCH] python3: add the rdepends for python3-misc

2020-06-11 Thread Yu, Mingli
From: Mingli Yu * Add python3-numbers to rdepends for python3-misc to fix below error: # python3 [snip] >>> import statistics [snip] ModuleNotFoundError: No module named 'numbers' * Don't use the hardcoded python3 moudules rdepends Signed-off-by: Mingli Yu --- meta/recipes-devtools/pytho

Re: [OE-core] [PATCH] virglrenderer: correct REQUIRED_DISTRO_FEATURES

2020-06-11 Thread Yu, Mingli
Hi Alex, On 6/10/20 4:25 PM, Alexander Kanavin wrote: On Wed, 10 Jun 2020 at 04:10, Yu, Mingli <mailto:mingli...@windriver.com>> wrote: Hi Alex and Denys, On 6/10/20 5:50 AM, Denys Dmytriyenko wrote: > +1 > > The commit message should explain "

[OE-core] [PATCH] python3-dbusmock: add the missing rdepends

2020-06-11 Thread Yu, Mingli
From: Mingli Yu Add the missing rdepends to fix below error: # python3 [snip] >>> import dbusmock [snip] ModuleNotFoundError: No module named 'unittest' Signed-off-by: Mingli Yu --- meta/recipes-devtools/python/python3-dbusmock_0.19.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/m

[OE-core] [PATCH v2] python3: add rdepends for python3-idle

2020-06-10 Thread Yu, Mingli
From: Mingli Yu Add rdepends for python3-idle to fix below error: # /usr/bin/idle3 -h [snip] _tkinter.TclError: Can't find a usable init.tcl [snip] Signed-off-by: Mingli Yu --- meta/recipes-devtools/python/python3_3.8.3.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-de

Re: [OE-core] [PATCH] python3: add tcl rdepends for python3-idle

2020-06-10 Thread Yu, Mingli
Hi RP, On 6/7/20 6:16 AM, Richard Purdie wrote: On Fri, 2020-06-05 at 16:47 +0800, Yu, Mingli wrote: From: Mingli Yu Add tcl rdepends for python3-idle to fix below error: # /usr/bin/idle3 -h [snip] _tkinter.TclError: Can't find a usable init.tcl [snip] Signed-off-by: Ming

Re: [OE-core] [PATCH 1/4] python: Add libarchive-c recipe

2020-06-09 Thread Yu, Mingli
Hi Joshua, I encounter below error when use the libarchive module, could you help to take a look? # python3 Python 3.8.2 (default, Jun 8 2020, 06:35:32) [GCC 10.1.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import libarchive Traceback (most recent ca

Re: [OE-core] The change pointed to by a .scc file not detected when compile kernel

2020-06-09 Thread Yu, Mingli
Hi Bruce, On 6/8/20 8:49 PM, Bruce Ashfield wrote: On Mon, Jun 8, 2020 at 1:39 AM Yu, Mingli wrote: Hi Bruce, On 6/4/20 9:04 PM, Bruce Ashfield wrote: On Thu, Jun 4, 2020 at 12:52 AM Yu, Mingli wrote: Hi Bruce, Currently, the change pointed to by a .scc file not detected when compile

Re: [OE-core] [PATCH] virglrenderer: correct REQUIRED_DISTRO_FEATURES

2020-06-09 Thread Yu, Mingli
Hi Alex and Denys, On 6/10/20 5:50 AM, Denys Dmytriyenko wrote: +1 The commit message should explain "why" and not "what", as "what" can be easily understood from the code itself. In fact, the DISTRO_FEATURES setting shouldn't affect native build. Initially this patch is used to fix below er

[OE-core] [PATCH] python3-setuptools: add missing rdepends for python3-pkg-resources

2020-06-09 Thread Yu, Mingli
From: Mingli Yu Add missing rdepends for python3-pkg-resources to fix below error: # python3 [snip] import pkg_resources [snip] ModuleNotFoundError: No module named 'plistlib' ModuleNotFoundError: No module named 'email' Signed-off-by: Mingli Yu --- meta/recipes-devtools/python/python-se

[OE-core] [PATCH] virglrenderer: correct REQUIRED_DISTRO_FEATURES

2020-06-09 Thread Yu, Mingli
From: Mingli Yu Add opengl to REQUIRED_DISTRO_FEATURES only for target build. Signed-off-by: Mingli Yu --- meta/recipes-graphics/virglrenderer/virglrenderer_0.8.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-graphics/virglrenderer/virglrenderer_0.8.2.bb

Re: [OE-core] The change pointed to by a .scc file not detected when compile kernel

2020-06-07 Thread Yu, Mingli
Hi Bruce, On 6/4/20 9:04 PM, Bruce Ashfield wrote: On Thu, Jun 4, 2020 at 12:52 AM Yu, Mingli wrote: Hi Bruce, Currently, the change pointed to by a .scc file not detected when compile kernel, for example: 1, add DISTRO_FEATURES_append = " virtualization" to conf/local.conf

[OE-core] [PATCH] python3: add tcl rdepends for python3-idle

2020-06-05 Thread Yu, Mingli
From: Mingli Yu Add tcl rdepends for python3-idle to fix below error: # /usr/bin/idle3 -h [snip] _tkinter.TclError: Can't find a usable init.tcl [snip] Signed-off-by: Mingli Yu --- meta/recipes-devtools/python/python3_3.8.2.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipe

[OE-core] [PATCH] python3-magic: add the missing rdepends

2020-06-04 Thread Yu, Mingli
From: Mingli Yu Add the missing rdepends to fix below error: # python3 [snip] >>> import magic [snip] ModuleNotFoundError: No module named 'ctypes' ModuleNotFoundError: No module named 'tempfile' Signed-off-by: Mingli Yu --- meta/recipes-devtools/python/python3-magic_0.4.18.bb | 5 -

[OE-core] The change pointed to by a .scc file not detected when compile kernel

2020-06-03 Thread Yu, Mingli
Hi Bruce, Currently, the change pointed to by a .scc file not detected when compile kernel, for example: 1, add DISTRO_FEATURES_append = " virtualization" to conf/local.conf to enable virtualization DISTRO_FEATURES and also add meta-virtualization layer to conf/bblayers.conf 2, bitbake -cc

Re: [OE-core] [PATCH] python3: add pydoc and urllib to core

2020-05-19 Thread Yu, Mingli
Hi Alejandro, On 5/19/20 3:51 PM, Alejandro Hernandez Samaniego wrote: Hey Mingly Yu, On 5/19/20 12:43 AM, Yu, Mingli wrote: Hi Alejandro, On 2020/5/19 下午3:22, Alejandro Hernandez Samaniego wrote: Hello, The more I look into this, the more I realize its incorrect. Understood your

Re: [OE-core] [PATCH] python3: add pydoc and urllib to core

2020-05-19 Thread Yu, Mingli
modifying the manifest to make sure that runtime dependencies are still valid? Thanks Alejandro On 5/18/20 12:32 AM, Yu, Mingli wrote: From: Mingli Yu Add pydoc and urllib to core to fix below error: # python3 >>> help() Traceback (most recent call last): File "", line

Re: [OE-core] [PATCH] python3: add pydoc and urllib to core

2020-05-18 Thread Yu, Mingli
e and also did some adjustment after run create_manifest. Thanks, Thanks Alejandro On 5/18/20 12:32 AM, Yu, Mingli wrote: From: Mingli Yu Add pydoc and urllib to core to fix below error: # python3 >>> help() Traceback (most recent call last): File "", line 1, in

[OE-core] [PATCH] python3: add pydoc and urllib to core

2020-05-18 Thread Yu, Mingli
From: Mingli Yu Add pydoc and urllib to core to fix below error: # python3 >>> help() Traceback (most recent call last): File "", line 1, in File "/usr/lib64/python3.8/sitebuiltins.py", line 102, in __call_ import pydoc ModuleNotFoundError: No module named 'pydoc' File "/usr/lib64/python

[OE-core] [PATCH] python3-setuptools: add the missing rdepends

2020-05-17 Thread Yu, Mingli
From: Mingli Yu Add the missing rdepends to fix below error: # python3 [snip] >>> import setuptools.lib2to3_ex [snip] ModuleNotFoundError: No module named 'lib2to3' ModuleNotFoundError: No module named 'pickle' Signed-off-by: Mingli Yu --- meta/recipes-devtools/python/python-setuptools.i

Re: [OE-core] [PATCH] bison: fix the parallel build

2020-05-14 Thread Yu, Mingli
Hi Jacob, I can check the https://lists.gnu.org/archive/html/bison-patches/2020-05/msg00055.html link now, so I resend the v2 to add the link for Upstream-Status part. Thanks, Mingli From: Yu, Mingli Sent: Thursday, May 14, 2020 15:59 To: Jacob Kroon

[OE-core] [PATCH v2] bison: fix the parallel build

2020-05-14 Thread Yu, Mingli
From: Mingli Yu Explicitly make the BUILT_SOURCES which are the generated headers such as stdio.h, fcntl.h and etc to be the dependencies of the gl_LIBOBJS such as libbison_a-sprintf.o, libbison_a-printf.o and etc to guarantee the BUILT_SOURCES is generated before begin to compile EXTRA_lib_libbi

Re: [OE-core] [PATCH] bison: fix the parallel build

2020-05-14 Thread Yu, Mingli
Hi Jacob, On 05/14/20 15:55, Jacob Kroon wrote: Hi Mingli, On 5/14/20 9:39 AM, Yu, Mingli wrote: From: Mingli Yu Explicitly make the BUILT_SOURCES which are the generated headers such as stdio.h, fcntl.h and etc to be the dependencies of the gl_LIBOBJS such as libbison_a-sprintf.o

[OE-core] [PATCH] bison: fix the parallel build

2020-05-14 Thread Yu, Mingli
From: Mingli Yu Explicitly make the BUILT_SOURCES which are the generated headers such as stdio.h, fcntl.h and etc to be the dependencies of the gl_LIBOBJS such as libbison_a-sprintf.o, libbison_a-printf.o and etc to guarantee the BUILT_SOURCES is generated before begin to compile EXTRA_lib_libbi

[OE-core] [PATCH] python3-setuptools: add the missing rdepends

2020-05-08 Thread Yu, Mingli
From: Mingli Yu Add the missing rdepends to fix below error: # python3 [snip] >>> import setuptools [snip] ModuleNotFoundError: No module named 'json' Signed-off-by: Mingli Yu --- meta/recipes-devtools/python/python-setuptools.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/r

[OE-core] [PATCH] pbzip2: Fix license warning

2020-04-30 Thread Yu, Mingli
From: Mingli Yu After below commit introduced, the LICENSE field changed from BSD-4-Clause to bzip-1.0.6. 669600ef9b bzip2/pbzip2: Correct license information But actually it should be bzip2-1.0.6, update it to fix the below license warning: WARNING: pbzip2-native-1.1.13-r0 do_populate_lic: pbzi

[OE-core] [PATCH] iputils: Initialize libgcrypt

2020-04-28 Thread Yu, Mingli
From: Mingli Yu Initialize libgcrypt on first use otherwise there comes below warning when check the status of the ninfod.service. # systemctl status ninfod.service * ninfod.service - Respond to IPv6 Node Information Queries Loaded: loaded (/lib/systemd/system/ninfod.service; enabled; vendor p

Re: [OE-core] [pseudo][PATCH] pseudo_util.c: Open file with O_CLOEXEC to avoid fd leak

2020-04-08 Thread Yu, Mingli
Thanks Seebs's update! We are trying to fix the issue as http://bugzilla.yoctoproject.org/show_bug.cgi?id=13311 stated. Thanks, Mingli From: Seebs Sent: Thursday, April 9, 2020 13:25 To: Yu, Mingli Cc: openembedded-core@lists.openembedded.org ; MacLeod,

[OE-core] [pseudo][PATCH] pseudo_util.c: Open file with O_CLOEXEC to avoid fd leak

2020-04-08 Thread Yu, Mingli
From: Pavel Modilaynen Use close-on-exec (O_CLOEXEC) flag when open log file to make sure its file descriptor is not leaked to parent process on fork/exec. Signed-off-by: Mingli Yu --- pseudo_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pseudo_util.c b/pseudo_util

[OE-core] [PATCH] Revert "dhclient: not always skip the nfsroot interface"

2020-04-07 Thread Yu, Mingli
From: Mingli Yu This reverts commit[27aec88 dhclient: not always skip the nfsroot interface] which used to address the IP address renew issue when boot a system in a nfsroot fs and altogether boot with ip=dhcp. But reported by some tester, the above commit introduces below issue when run ltp tes

[OE-core] [PATCH 2/2] dhcp: add RDEPENDS for dhcp-client

2020-04-01 Thread Yu, Mingli
From: Mingli Yu Add iproute2 RDEPENDS for dhcp-client as /sbin/dhclient-systemd-wrapper which called by dhclient.service depends on ip command which provided by iproute2 package when systemd enabled in DISTRO_FEATURES. Signed-off-by: Mingli Yu --- meta/recipes-connectivity/dhcp/dhcp.inc | 1 +

[OE-core] [PATCH 1/2] dhclient: not always skip the nfsroot interface

2020-04-01 Thread Yu, Mingli
From: Mingli Yu Don't skip the nfsroot interface when use dhcp to get the address for nfsroot interface as the nfsroot interface may need dhclient to renew the lease. Signed-off-by: Mingli Yu --- .../dhcp/files/dhclient-systemd-wrapper| 26 +- 1 file changed, 25

Re: [OE-core] [PATCH] netbase: use git fetcher

2020-04-01 Thread Yu, Mingli
Hi RP, What's the error do you mean? I didn't find the error related to netbase, could you help to provide more info? Thanks, Mingli From: Richard Purdie Sent: Wednesday, April 1, 2020 17:20 To: Yu, Mingli ; openembedded-core@lists.openembedded.org

Re: [OE-core] [PATCH] netbase: use git fetcher

2020-04-01 Thread Yu, Mingli
I will look into it. Thanks, Mingli From: Richard Purdie Sent: Wednesday, April 1, 2020 17:20 To: Yu, Mingli ; openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH] netbase: use git fetcher On Mon, 2020-03-16 at 17:24 +0800, mingli

Re: [OE-core] [PATCH] netbase: use git fetcher

2020-03-31 Thread Yu, Mingli
Ping. Thanks, Mingli From: openembedded-core-boun...@lists.openembedded.org on behalf of mingli...@windriver.com Sent: Monday, March 16, 2020 17:24 To: openembedded-core@lists.openembedded.org Subject: [OE-core] [PATCH] netbase: use git fetcher From: Mingli

Re: [OE-core] bash: Fix CVE-2019-18276

2020-03-03 Thread Yu, Mingli
@lists.openembedded.org Subject: Re: [OE-core] bash: Fix CVE-2019-18276 On Tue, 2020-03-03 at 03:11 +, Yu, Mingli wrote: > Hi Anuj, > > I agree the Backport status is not accurate as the patch doesn't go > to master branch, but why do you say the patch is irrelevant to the

Re: [OE-core] bash: Fix CVE-2019-18276

2020-03-03 Thread Yu, Mingli
Thanks Chet very much for your confirmation! If the commit fixs the CVE-2019-18276, why is it merged to the master branch? Thanks, Mingli From: Chet Ramey [chet.ra...@case.edu] Sent: Tuesday, March 03, 2020 9:55 PM To: Yu, Mingli; Mittal, Anuj

Re: [OE-core] bash: Fix CVE-2019-18276

2020-03-02 Thread Yu, Mingli
Hi Anuj, I agree the Backport status is not accurate as the patch doesn't go to master branch, but why do you say the patch is irrelevant to the CVE-2019-18276, could you help to provide more info? Hi Chet, Does https://git.savannah.gnu.org/cgit/bash.git/commit/?h=devel&id=951bdaad7a18cc0dc103

Re: [OE-core] [PATCH] gstreamer1.0-plugins-common.inc: disable orc on mips

2020-01-21 Thread Yu, Mingli
On 01/22/20 02:36, Khem Raj wrote: On Mon, Jan 20, 2020 at 11:19 PM wrote: From: Mingli Yu After transiton to meson build for gstreamer series, for gstreamer1.0-plugins-base, with below two commits introduced: 238080ed89 gstreamer: Remove unused common files and patches 20614408dc gstream

Re: [OE-core] ✗ patchtest: failure for Open file with O_CLOEXEC to avoid fd leak (rev3)

2020-01-19 Thread Yu, Mingli
On 01/20/20 11:15, Peter Kjellerstedt wrote: -Original Message- From: Yu, Mingli Sent: den 20 januari 2020 04:04 To: Peter Kjellerstedt ; Paul Eggleton Cc: openembedded-core@lists.openembedded.org Subject: Re: [OE-core] ✗ patchtest: failure for Open file with O_CLOEXEC to avoid fd

Re: [OE-core] ✗ patchtest: failure for Open file with O_CLOEXEC to avoid fd leak (rev3)

2020-01-19 Thread Yu, Mingli
On 01/20/20 10:28, Peter Kjellerstedt wrote: -Original Message- From: openembedded-core-boun...@lists.openembedded.org On Behalf Of Yu, Mingli Sent: den 20 januari 2020 02:34 To: Paul Eggleton Cc: openembedded-core@lists.openembedded.org Subject: Re: [OE-core] ✗ patchtest: failure

Re: [OE-core] ✗ patchtest: failure for Open file with O_CLOEXEC to avoid fd leak (rev3)

2020-01-19 Thread Yu, Mingli
On 01/20/20 09:29, Paul Eggleton wrote: Hi Mingli On Sunday, 19 January 2020 6:41:49 PM NZDT Yu, Mingli wrote: On 01/19/20 13:32, Patchwork wrote: == Series Details == Series: Open file with O_CLOEXEC to avoid fd leak (rev3) Revision: 3 URL : https://patchwork.openembedded.org/series

Re: [OE-core] ✗ patchtest: failure for Open file with O_CLOEXEC to avoid fd leak (rev3)

2020-01-18 Thread Yu, Mingli
On 01/19/20 13:32, Patchwork wrote: == Series Details == Series: Open file with O_CLOEXEC to avoid fd leak (rev3) Revision: 3 URL : https://patchwork.openembedded.org/series/22123/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an a

Re: [OE-core] [PATCH] go-dep: disable PTEST_ENABLED

2019-07-02 Thread Yu, Mingli
On 2019年07月01日 19:59, Matt Madison wrote: On Sun, Jun 30, 2019 at 6:59 PM Yu, Mingli wrote: On 2019年06月28日 19:02, Richard Purdie wrote: On Fri, 2019-06-28 at 00:57 -0700, mingli...@windriver.com wrote: From: Mingli Yu The run-ptest logic for go-dep actually runs the /usr/lib64/go-dep

Re: [OE-core] [PATCH] go-dep: disable PTEST_ENABLED

2019-06-30 Thread Yu, Mingli
On 2019年06月28日 19:02, Richard Purdie wrote: On Fri, 2019-06-28 at 00:57 -0700, mingli...@windriver.com wrote: From: Mingli Yu The run-ptest logic for go-dep actually runs the /usr/lib64/go-dep/ptest/github.com/golang/dep/cmd/dep/dep.test whose source file is https://github.com/golang/dep/blo

Re: [OE-core] [PATCH v5 06/13] go.bbclass: ptest cleanup and improvements

2019-06-28 Thread Yu, Mingli
On 2019年06月27日 19:34, Matt Madison wrote: On Wed, Jun 26, 2019 at 11:40 PM Yu, Mingli wrote: On 2019年06月26日 22:00, Matt Madison wrote: On Wed, Jun 26, 2019 at 2:02 AM Yu, Mingli wrote: On 2019年06月25日 20:23, Matt Madison wrote: On Fri, Jun 21, 2019 at 2:08 AM Yu, Mingli wrote: Hi

Re: [OE-core] [PATCH v5 06/13] go.bbclass: ptest cleanup and improvements

2019-06-26 Thread Yu, Mingli
On 2019年06月26日 22:00, Matt Madison wrote: On Wed, Jun 26, 2019 at 2:02 AM Yu, Mingli wrote: On 2019年06月25日 20:23, Matt Madison wrote: On Fri, Jun 21, 2019 at 2:08 AM Yu, Mingli wrote: Hi Matt, I noticed your commit is the latest update for go-dep ptest. But the go-dep ptest doesn&#

Re: [OE-core] [PATCH v5 06/13] go.bbclass: ptest cleanup and improvements

2019-06-26 Thread Yu, Mingli
On 2019年06月25日 20:23, Matt Madison wrote: On Fri, Jun 21, 2019 at 2:08 AM Yu, Mingli wrote: Hi Matt, I noticed your commit is the latest update for go-dep ptest. But the go-dep ptest doesn't work in my environment. I'm trying to figure out what's wrong is here though I d

Re: [OE-core] [PATCH v5 06/13] go.bbclass: ptest cleanup and improvements

2019-06-21 Thread Yu, Mingli
Hi Matt, I noticed your commit is the latest update for go-dep ptest. But the go-dep ptest doesn't work in my environment. I'm trying to figure out what's wrong is here though I didn't know much about go. BTW, Could you help to check? root@qemux86-64:~# cd /usr/lib64/go-dep/ptest/ root@qemux

Re: [OE-core] OE-Core status with gcc9

2019-06-06 Thread Yu, Mingli
On 2019年05月27日 15:53, Khem Raj wrote: On Sun, May 26, 2019 at 10:17 AM Khem Raj wrote: On Mon, May 13, 2019 at 8:39 PM Khem Raj wrote: On Sun, May 12, 2019 at 1:14 PM Khem Raj wrote: On Sun, May 12, 2019 at 6:21 AM Richard Purdie wrote: I've run some tests and think we're now down t

Re: [OE-core] [PATCH v4] elfutils: fix ptest failures

2019-05-30 Thread Yu, Mingli
On 2019年05月31日 04:49, richard.pur...@linuxfoundation.org wrote: On Thu, 2019-05-30 at 14:11 +0800, mingli...@windriver.com wrote: From: Mingli Yu * Add missing files which needed by ptest test to fix the ptest failures such as: | sh: ../src/elflint: No such file or directory | FAIL:

Re: [OE-core] [PATCH v3] elfutils: fix ptest failures

2019-05-29 Thread Yu, Mingli
On 2019年05月29日 18:13, richard.pur...@linuxfoundation.org wrote: On Wed, 2019-05-29 at 16:55 +0800, mingli...@windriver.com wrote: From: Mingli Yu * Add missing -ptest package dependency (needs ${PN}-dev) * Add missing files which needed by ptest test to fix the ptest failures such as:

Re: [OE-core] [PATCH v3] elfutils: fix ptest failures

2019-05-29 Thread Yu, Mingli
On 2019年05月30日 02:40, richard.pur...@linuxfoundation.org wrote: On Wed, 2019-05-29 at 16:55 +0800, mingli...@windriver.com wrote: From: Mingli Yu * Add missing -ptest package dependency (needs ${PN}-dev) * Add missing files which needed by ptest test to fix the ptest failures such as:

Re: [OE-core] [PATCH v2] elfutils: fix ptest failures

2019-05-28 Thread Yu, Mingli
On 2019年05月28日 18:01, richard.pur...@linuxfoundation.org wrote: On Tue, 2019-05-28 at 17:40 +0800, mingli...@windriver.com wrote: From: Mingli Yu * Add missing -ptest package dependencies (needs ${PN}-dev) * Add missing files which needed by ptest test to fix the ptest failures such a

Re: [OE-core] [PATCH] elfutils: fix ptest failures

2019-05-28 Thread Yu, Mingli
On 2019年05月26日 04:16, richard.pur...@linuxfoundation.org wrote: On Wed, 2019-05-22 at 17:11 +0800, mingli...@windriver.com wrote: From: Mingli Yu * Add missing -ptest package dependencies (needs ${PN}-dbg) * Add missing files which needed by ptest test to fix below failures: | ./ru

Re: [OE-core] [PATCH v3] glib-2.0: fix ptest failures

2019-05-13 Thread Yu, Mingli
On 2019年05月13日 17:40, richard.pur...@linuxfoundation.org wrote: On Mon, 2019-05-13 at 17:25 +0800, Yu, Mingli wrote: On 2019年05月08日 20:25, richard.pur...@linuxfoundation.org wrote: On Wed, 2019-05-08 at 12:54 +0100, Burton, Ross wrote: On Wed, 8 May 2019 at 04:06, wrote: * Increase the

Re: [OE-core] [PATCH v3] glib-2.0: fix ptest failures

2019-05-13 Thread Yu, Mingli
On 2019年05月08日 20:25, richard.pur...@linuxfoundation.org wrote: On Wed, 2019-05-08 at 12:54 +0100, Burton, Ross wrote: On Wed, 8 May 2019 at 04:06, wrote: * Increase the timeout to 15 minutes as the default timeout which is 5 minutes is not enough to fix below error: | Executing: glib/

Re: [OE-core] [PATCH v2] glib-2.0: fix ptest failures

2019-05-07 Thread Yu, Mingli
On 2019年05月06日 17:50, Adrian Bunk wrote: On Sun, May 05, 2019 at 02:09:49PM +0800, Yu, Mingli wrote: On 2019年04月30日 21:16, Burton, Ross wrote: On Tue, 30 Apr 2019 at 08:45, wrote: ... * Increase the timeout to 15 minutes as the default timeout which is 5 minutes is not enough to fix

Re: [OE-core] [PATCH v2] glib-2.0: fix ptest failures

2019-05-04 Thread Yu, Mingli
On 2019年04月30日 21:16, Burton, Ross wrote: On Tue, 30 Apr 2019 at 08:45, wrote: From: Mingli Yu * Install 7 translation packages to fix 7 ptest failures such as: | GLib:ERROR:../glib-2.58.3/glib/tests/gdatetime.c:1477:test_non_utf8_printf: assertion failed (__p == ("10\346\234\210")):

Re: [OE-core] [PATCH v4 1/2] nettle: fix the Segmentation fault

2019-04-28 Thread Yu, Mingli
Ping. Thanks, On 2019年04月24日 16:41, mingli...@windriver.com wrote: From: Mingli Yu The commit[8ac8fa8ee1 nettle: update to 3.4.1] add CFLAGS_append = " -std=c99" to silence the below error for native build: | ../nettle-3.4.1/rsa-sign-tr.c: In function 'sec_equal': | ../nettle-3.4.1/rsa-sign-t

Re: [OE-core] [PATCH v2] bjam-native: do not search all PATHs variable

2019-04-28 Thread Yu, Mingli
On 2019年04月28日 18:55, Richard Purdie wrote: On Sun, 2019-04-28 at 11:38 +0200, Alexander Kanavin wrote: Wait, why is this a problem for specifically bjam, but not the other tools that also look into PATH? Shouldn’t you fix the nfs instead? I have to agree that you really don't want invalids

Re: [OE-core] [PATCH] glib-2.0: fix ptest failures

2019-04-24 Thread Yu, Mingli
On 2019年04月24日 20:07, Burton, Ross wrote: On Wed, 24 Apr 2019 at 02:51, Yu, Mingli wrote: Per the comments at https://gitlab.gnome.org/GNOME/glib/issues/1357, we need to run test_non_utf8_printf under builddir to guarantee the test passed. Re-read the comments. Setting that variable skips

Re: [OE-core] [PATCH] glib-2.0: fix ptest failures

2019-04-23 Thread Yu, Mingli
On 2019年04月23日 23:52, Burton, Ross wrote: On Fri, 19 Apr 2019 at 09:54, wrote: From: Mingli Yu * Set G_TEST_BUILDDIR to mark we run the tests out of builddir to make it can skip the test_non_utf8_printf to fix below test error as test_non_utf8_printf needed to run under builddir pe

Re: [OE-core] [PATCH v3] gcc-sanitizers: fix -Werror=maybe-uninitialized issue

2019-04-21 Thread Yu, Mingli
On 2019年04月18日 01:14, Khem Raj wrote: On Wed, Apr 17, 2019 at 12:45 AM Yu, Mingli wrote: On 2019年04月17日 02:00, Khem Raj wrote: On Tue, Apr 16, 2019 at 1:40 AM Yu, Mingli wrote: On 2019年04月16日 00:21, Adrian Bunk wrote: On Mon, Apr 15, 2019 at 07:19:13AM -0700, Khem Raj wrote: What

Re: [OE-core] [PATCH v3] nettle: fix ptest failure

2019-04-17 Thread Yu, Mingli
Hi RP, Any comments here? Thanks, On 2019年04月16日 11:14, Yu, Mingli wrote: On 2019年04月15日 19:08, richard.pur...@linuxfoundation.org wrote: On Mon, 2019-04-15 at 17:05 +0800, mingli...@windriver.com wrote: @@ -33,6 +29,8 @@ EXTRA_OECONF = "--disable-openssl" CFLAGS_append =

Re: [OE-core] [PATCH v3] gcc-sanitizers: fix -Werror=maybe-uninitialized issue

2019-04-17 Thread Yu, Mingli
On 2019年04月17日 02:00, Khem Raj wrote: On Tue, Apr 16, 2019 at 1:40 AM Yu, Mingli wrote: On 2019年04月16日 00:21, Adrian Bunk wrote: On Mon, Apr 15, 2019 at 07:19:13AM -0700, Khem Raj wrote: What are you trying to convey ? That’s what I mentioned before I began my reply however to

Re: [OE-core] [PATCH v3] gcc-sanitizers: fix -Werror=maybe-uninitialized issue

2019-04-16 Thread Yu, Mingli
On 2019年04月16日 00:21, Adrian Bunk wrote: On Mon, Apr 15, 2019 at 07:19:13AM -0700, Khem Raj wrote: What are you trying to convey ? That’s what I mentioned before I began my reply however to reiterate my point was if a package is not usually built and tested with this combination which is evid

Re: [OE-core] [PATCH v3] nettle: fix ptest failure

2019-04-15 Thread Yu, Mingli
On 2019年04月15日 19:08, richard.pur...@linuxfoundation.org wrote: On Mon, 2019-04-15 at 17:05 +0800, mingli...@windriver.com wrote: @@ -33,6 +29,8 @@ EXTRA_OECONF = "--disable-openssl" CFLAGS_append = " -std=c99" do_compile_ptest() { +# fix dlopen-test failure as cannot locate libne

Re: [OE-core] [PATCH v3] gcc-sanitizers: fix -Werror=maybe-uninitialized issue

2019-04-15 Thread Yu, Mingli
On 2019年04月09日 11:53, Khem Raj wrote: On Mon, Apr 8, 2019 at 7:32 PM wrote: From: Mingli Yu When DEBUG_BUILD = "1" added in local.conf, there comes below build error when "bitbake gcc-sanitizers": | ./../../../../../../../../work-shared/gcc-8.3.0-r0/gcc-8.3.0/libsanitizer/libbacktrace/../

Re: [OE-core] [PATCH v2] nettle: fix ptest failure

2019-04-15 Thread Yu, Mingli
On 2019年04月15日 16:06, richard.pur...@linuxfoundation.org wrote: On Mon, 2019-04-15 at 16:09 +0800, Yu, Mingli wrote: On 2019年04月15日 15:59, richard.pur...@linuxfoundation.org wrote: On Mon, 2019-04-15 at 15:40 +0800, mingli...@windriver.com wrote: a/testsuite/dlopen-test.c 2016-10-01

Re: [OE-core] [PATCH v2] nettle: fix ptest failure

2019-04-15 Thread Yu, Mingli
On 2019年04月15日 15:59, richard.pur...@linuxfoundation.org wrote: On Mon, 2019-04-15 at 15:40 +0800, mingli...@windriver.com wrote: a/testsuite/dlopen-test.c 2016-10-01 00:28:38.0 -0700 -+++ b/testsuite/dlopen-test.c 2017-10-13 11:08:57.227572860 -0700 -@@ -9,7 +9,7 @@ +diff --git

Re: [OE-core] [v2][PATCH] nettle: update to 3.4.1

2019-04-15 Thread Yu, Mingli
On 2019年01月06日 06:05, Armin Kuster wrote: Bug fix only release Include: CVE-2018-16868 gnutls: Bleichenbacher-like side channel leakage in PKCS#1 1.5 verification and padding oracle verification CVE-2018-16869 nettle: Leaky data conversion exposing a manager oracle For full details

Re: [OE-core] [PATCH] nettle: fix ptest failure

2019-04-14 Thread Yu, Mingli
On 2019年04月13日 05:57, Richard Purdie wrote: On Fri, 2019-04-12 at 11:27 +0800, mingli...@windriver.com wrote: From: Mingli Yu Remove dlopen-test.patch which originally used to fix the test dlopen-test, but autually the patch didn't resolve the issue as dlopen-test.patch supposes the file /us

Re: [OE-core] [PATCH] gcc-sanitizers: fix -Werror=maybe-uninitialized issue

2019-04-04 Thread Yu, Mingli
Ping. Any comments here? Thanks, On 2019年03月19日 16:44, mingli...@windriver.com wrote: From: Mingli Yu When DEBUG_BUILD = "1" added in local.conf, there comes below build error when "bitbake gcc-sanitizers": | ./../../../../../../../../work-shared/gcc-8.3.0-r0/gcc-8.3.0/libsanitizer/libbackt

Re: [OE-core] [PATCH] asciidoc: disable xmllint check

2019-04-04 Thread Yu, Mingli
On 2019年04月04日 16:02, Burton, Ross wrote: Some further context (note to self: don't reply to mails during breakfast): the problem which lead to xmllint failing also leads to the XSL stylesheets in the sysroot not being used, so xsltproc downloads them. On my machine, asciidoc should execute do

Re: [OE-core] [PATCH] gcc-sanitizers: fix -Werror=maybe-uninitialized issue

2019-03-25 Thread Yu, Mingli
Ping. Thanks, On 2019年03月19日 16:44, mingli...@windriver.com wrote: From: Mingli Yu When DEBUG_BUILD = "1" added in local.conf, there comes below build error when "bitbake gcc-sanitizers": | ./../../../../../../../../work-shared/gcc-8.3.0-r0/gcc-8.3.0/libsanitizer/libbacktrace/../../libbacktr

Re: [OE-core] [PATCH] gcc-sanitizers: fix the build with -fno-omit-frame-pointer

2019-03-12 Thread Yu, Mingli
Ping. Thanks, On 2019年03月06日 12:24, mingli...@windriver.com wrote: From: Mingli Yu Fix the below build issue for gcc-sanitizers when both -mthumb and -fno-omit-frame-pointer configured for arm. | ../../../../libsanitizer/sanitizer_common/sanitizer_linux.cc: In function 'sanitizer::uptr sanit

Re: [OE-core] [PATCH] gcc-sanitizers: fix the build with -fno-omit-frame-pointer

2019-03-05 Thread Yu, Mingli
On 2019年03月06日 13:34, Khem Raj wrote: On Tue, Mar 5, 2019 at 8:24 PM wrote: From: Mingli Yu Fix the below build issue for gcc-sanitizers when both -mthumb and -fno-omit-frame-pointer configured for arm. | ../../../../libsanitizer/sanitizer_common/sanitizer_linux.cc: In function 'sanitizer

Re: [OE-core] [PATCH] libdazzle: add check for GTK3DISTROFEATURES

2019-02-27 Thread Yu, Mingli
Ping. Thanks, On 2019年02月26日 10:50, mingli...@windriver.com wrote: From: Mingli Yu When do world buid, there comes below error: | ERROR: Nothing PROVIDES 'gtk+3' (but /build/layers/oe-core/meta/recipes-gnome/libdazzle/libdazzle_3.30.2.bb DEPENDS on or otherwise requires it) | gtk+3 was skip

Re: [OE-core] [PATCH] logrotate.py: restore /etc/logrotate.d/wtmp

2019-02-18 Thread Yu, Mingli
Ping. This patch is used to fix the incomplete cleanup for logrotate test in oeqa. Thanks, On 2019年02月13日 13:43, mingli...@windriver.com wrote: From: Mingli Yu During the test logrotate.LogrotateTest.test_1_logrotate_setup, there is below logic: # mkdir $HOME/logrotate_dir # sed -i "s#wt

Re: [OE-core] [PATCH] systemd: improve reproducibility

2019-02-12 Thread Yu, Mingli
Ping. On 2019年02月01日 16:40, mingli...@windriver.com wrote: From: Mingli Yu Considering it's meanlingness to get test dir in compiled env, remove ABS_BUILD_DIR and ABS_SRC_DIR lines in src/shared/tests.c to improve reproducibility to fix below issue: WARNING: systemd-1_239-r0 do_package_qa: QA

<    1   2   3   4   5   >