Re: [OE-core] [PATCH] gcc-9.2: Security fix for CVE-2019-14250

2019-09-02 Thread Mikko.Rapeli
On Mon, Sep 02, 2019 at 02:33:02PM -0700, akuster808 wrote: > > > On 9/2/19 5:40 AM, Adrian Bunk wrote: > > On Sun, Sep 01, 2019 at 10:07:13AM -0700, akuster808 wrote: > >> > >> On 9/1/19 7:05 AM, Adrian Bunk wrote: > >>> thud and zeus are providing 2 gcc versions each that need fixing. > >>

[OE-core] [PATCH V3] dnf.py: installroot support usrmerge

2019-09-02 Thread changqing.li
From: Changqing Li Signed-off-by: Changqing Li --- meta/lib/oeqa/runtime/cases/dnf.py | 34 +- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/meta/lib/oeqa/runtime/cases/dnf.py b/meta/lib/oeqa/runtime/cases/dnf.py index 629b9af..80cc86a 100644

[OE-core] [PATCH] python-numpy: rdepend on multiprocessing module

2019-09-02 Thread Chen Qi
`import numpy.distutils' gives people the following error. ModuleNotFoundError: No module named 'multiprocessing' Fix it by adding multiprocessing dependency. Signed-off-by: Chen Qi --- meta/recipes-devtools/python-numpy/python-numpy.inc | 1 + 1 file changed, 1 insertion(+) diff --git

Re: [OE-core] [PATCH] gcc-9.2: Security fix for CVE-2019-14250

2019-09-02 Thread Adrian Bunk
On Mon, Sep 02, 2019 at 02:33:02PM -0700, akuster808 wrote: > > > On 9/2/19 5:40 AM, Adrian Bunk wrote: > > On Sun, Sep 01, 2019 at 10:07:13AM -0700, akuster808 wrote: > >> > >> On 9/1/19 7:05 AM, Adrian Bunk wrote: > >>> thud and zeus are providing 2 gcc versions each that need fixing. > >>

[OE-core] [PATCH] lttng: babeltrace: Fix negative clock offset

2019-09-02 Thread zhe.he
From: He Zhe Backport a patch to fix negative clock offset with the following errors, when when using lttng to view traces. [error] ctf_clock_declaration_visit: unexpected unary expression for clock offset [error] ctf_visitor_construct_metadata: clock declaration error [error] Error in CTF

[OE-core] [PATCH] logrotate:upgrade 3.15.0 -> 3.15.1

2019-09-02 Thread Zang Ruochen
Signed-off-by: Zang Ruochen --- .../logrotate/{logrotate_3.15.0.bb => logrotate_3.15.1.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/logrotate/{logrotate_3.15.0.bb => logrotate_3.15.1.bb} (96%) diff --git

[OE-core] [PATCH] python-testtools: rdepend on doctest module

2019-09-02 Thread Chen Qi
`import testtools' will give people error for lacking of doctest module. Add it to RDEPENDS to solve the issue. Signed-off-by: Chen Qi --- meta/recipes-devtools/python/python-testtools.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/python/python-testtools.inc

Re: [OE-core] [PATCH] gcc-9.2: Security fix for CVE-2019-14250

2019-09-02 Thread akuster808
On 9/2/19 5:40 AM, Adrian Bunk wrote: > On Sun, Sep 01, 2019 at 10:07:13AM -0700, akuster808 wrote: >> >> On 9/1/19 7:05 AM, Adrian Bunk wrote: >>> thud and zeus are providing 2 gcc versions each that need fixing. >> That is a true statement. What are you expecting? > The other versions also

[OE-core] [PATCH] gcc-8.3: Security fix for CVE-2019-14250

2019-09-02 Thread Armin Kuster
From: Armin Kuster Affects < 9.2 Signed-off-by: Armin Kuster Signed-off-by: Armin Kuster --- meta/recipes-devtools/gcc/gcc-8.3.inc | 1 + .../gcc/gcc-8.3/CVE-2019-14250.patch | 44 ++ 2 files changed, 45 insertions(+) create mode 100644

Re: [OE-core] qemu-native fix for latest kernel update

2019-09-02 Thread akuster808
Benjamin, On 9/2/19 8:09 AM, Benjamin Esquivel wrote: > qemu-native fix for latest kernel update > > Thanks Armin for sending the fix for the latest kernel updates, my > build strangely started failing about a week or 2 ago after the latest > dnf update. > Glad it fixed your issue. Thanks for

Re: [OE-core] [OE-Core][PATCH] iputils: Set prefix correctly for usrmerge

2019-09-02 Thread Alex Kiernan
On Mon, Sep 2, 2019 at 7:45 PM Ross Burton wrote: > > On 02/09/2019 11:04, Alex Kiernan wrote: > > -EXTRA_OEMESON += "--prefix=/" > > +EXTRA_OEMESON += "--prefix=${prefix}" > > Probably good to explicitly point out that this moves all of the > binaries in the non-usrmerge case. Did you test that

[OE-core] [PATCH] systemd: explicitly set the path to nologin

2019-09-02 Thread Ross Burton
Set the path to nologin as with sulogin etc so we don't try to execute binaries from the build path on the target (as the build finds a nologin in the sysroot at build time). Signed-off-by: Ross Burton --- meta/recipes-core/systemd/systemd_242.bb | 1 + 1 file changed, 1 insertion(+) diff

Re: [OE-core] [OE-Core][PATCH] iputils: Set prefix correctly for usrmerge

2019-09-02 Thread Ross Burton
On 02/09/2019 11:04, Alex Kiernan wrote: -EXTRA_OEMESON += "--prefix=/" +EXTRA_OEMESON += "--prefix=${prefix}" Probably good to explicitly point out that this moves all of the binaries in the non-usrmerge case. Did you test that the system still works with these moved when usrmerge isn't

Re: [OE-core] [PATCH] gcc-9.2: Security fix for CVE-2019-14250

2019-09-02 Thread akuster808
On 9/2/19 5:40 AM, Adrian Bunk wrote: > On Sun, Sep 01, 2019 at 10:07:13AM -0700, akuster808 wrote: >> >> On 9/1/19 7:05 AM, Adrian Bunk wrote: >>> thud and zeus are providing 2 gcc versions each that need fixing. >> That is a true statement. What are you expecting? > The other versions also

[OE-core] qemu-native fix for latest kernel update

2019-09-02 Thread Benjamin Esquivel
Thanks Armin for sending the fix for the latest kernel updates, my build strangely started failing about a week or 2 ago after the latest dnf update.   Regards,   Benjamin -- ___ Openembedded-core mailing list

[OE-core] [PATCH] systemd: provides ${base_sbindir}/udevadm for backward compatible

2019-09-02 Thread kai.kang
From: Kai Kang Create link file ${base_sbindir}/udevadm for backward compatible that some existing udev rules require it. eudev has the link file already. Signed-off-by: Kai Kang --- meta/recipes-core/systemd/systemd_242.bb | 4 1 file changed, 4 insertions(+) diff --git

Re: [OE-core] [PATCH] gcc-9.2: Security fix for CVE-2019-14250

2019-09-02 Thread Adrian Bunk
On Sun, Sep 01, 2019 at 10:07:13AM -0700, akuster808 wrote: > > > On 9/1/19 7:05 AM, Adrian Bunk wrote: > > thud and zeus are providing 2 gcc versions each that need fixing. > That is a true statement. What are you expecting? The other versions also being fixed? gcc-8 being fixed in warrior

[OE-core] QA check for package arch less specific than one of the dependency

2019-09-02 Thread Bedel, Alban
Hi all, in a layer I'm using I noticed that some recipes used the default generic architecture although they (build) depend on machine specific recipes. As far as understand this is generally incorrect, a recipe should never have a build dependency that has a more specific architecture than the

Re: [OE-core] [PATCH] devtool: Avoid failure for recipes with S == WORKDIR and no local files

2019-09-02 Thread Paul Eggleton
On Friday, 30 August 2019 8:43:02 AM NZST Peter Kjellerstedt wrote: > When extracting the sources for a recipe that has S == WORKDIR and no > local files in the SRC_URI (which, e.g., can happen for a recipe with > a URI that has the unpack=false attribute), the extraction fails with > the

[OE-core] [OE-Core][PATCH] iputils: Set prefix correctly for usrmerge

2019-09-02 Thread Alex Kiernan
Fix build with usrmerge enabled: WARNING: iputils-s20190709-r0 do_package: iputils: alternative target (/usr/bin/ping or /usr/bin/ping.iputils) does not exist, skipping... WARNING: iputils-s20190709-r0 do_package: iputils: NOT adding alternative provide /usr/bin/ping: /usr/bin/ping.iputils

[OE-core] [PATCH V2] man-db: support usrmerge

2019-09-02 Thread changqing.li
From: Changqing Li Signed-off-by: Changqing Li --- meta/recipes-extended/man-db/man-db_2.8.7.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/man-db/man-db_2.8.7.bb b/meta/recipes-extended/man-db/man-db_2.8.7.bb index bdf340a..083b237 100644 ---

[OE-core] [PATCH V2] dnf.py: support usrmerge

2019-09-02 Thread changqing.li
From: Changqing Li Signed-off-by: Changqing Li --- meta/lib/oeqa/runtime/cases/dnf.py | 34 +- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/meta/lib/oeqa/runtime/cases/dnf.py b/meta/lib/oeqa/runtime/cases/dnf.py index 629b9af..9a5308f 100644

Re: [OE-core] [PATCH] kernel-fitimage: uboot-sign: fix missing signature

2019-09-02 Thread Jun Nie
Hi Richard, Any concern on cherry-pick this patch to warrior-dev branch? Regards, Jun > > Jun Nie 于2019年7月25日周四 下午4:26写道: > > > > Jun Nie 于2019年7月10日周三 下午3:11写道: > > > > > > u-boot.bin with dtb & signature should be placed in ${B} so that > > > it can be deployed by u-boot as expected.

Re: [OE-core] [PATCH] meta-environment: make rpm and dnf work in toolchain

2019-09-02 Thread Alexander Kanavin
On Mon, 2 Sep 2019 at 03:16, Zheng Ruoqin wrote: > We need to configure dnf and rpm to use and make it compatible with > package architecture from yocto build system. > + > +mkdir -p ${D}/${SDKTARGETSYSROOT}/etc/rpm > +echo "arch_compat: ${MACHINE_ARCH}: ${PACKAGE_ARCHS}" > >

Re: [OE-core] [PATCH 1/1] build-compare: 2015.02.10 -> 2019.08-14

2019-09-02 Thread Robert Yang
Sorry, the subject should be: 2015.02.10 -> 2019.08.14 (not 08-14). I've updated it in the PULL. // Robert On 9/2/19 4:11 PM, Robert Yang wrote: * Removed the following patches which are already merged by upstream: 0001-Add-support-for-deb-and-ipk-packaging.patch

[OE-core] [PATCH 1/1] build-compare: 2015.02.10 -> 2019.08-14

2019-09-02 Thread Robert Yang
* Removed the following patches which are already merged by upstream: 0001-Add-support-for-deb-and-ipk-packaging.patch Rename-rpm-check.sh-to-pkg-diff.sh.patch functions.sh-improve-deb-and-ipk-checking.patch functions.sh-remove-space-at-head.patch

[OE-core] [PATCH 0/1] build-compare: 2015.02.10 -> 2019.08-14 (Outstanding improvements)

2019-09-02 Thread Robert Yang
The following changes since commit b4673b5befa339b2ffc3c274b105ab96d730ea2d: avahi: launch avahi-daemon after connman (2019-08-31 08:44:19 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/pu