[OE-core] [PATCH 1/4] screen: Upgrade 4.4.0 -> 4.5.0

2017-01-23 Thread Maxin B. John
Removed the following Backported patches: 1. 0001-fix-for-multijob-build.patch 2. 0002-comm.h-now-depends-on-term.h.patch Signed-off-by: Maxin B. John --- .../screen/0001-fix-for-multijob-build.patch | 58 --

[OE-core] [PATCH 2/4] libtasn1: Upgrade 4.9 -> 4.10

2017-01-23 Thread Maxin B. John
Removed the following Backported patches: 1. 0001-configure-don-t-add-Werror-to-build-flags.patch 2. 0002-ASN.y-corrected-compiler-warning.patch 3. 0003-parser_aux-corrected-potential-null-pointer-derefere.patch 4. 0004-tools-eliminated-compiler-warnings.patch Signed-off-by: Maxin B. John

[OE-core] [PATCH 3/4] libpng: Upgrade 1.6.26 -> 1.6.28

2017-01-23 Thread Maxin B. John
This upgrade fixes the vulnerability: CVE-2016-10087 License file changes are due to updates in Package Version and Copyright date. ie: 'libpng version 1.6.28, January 5, 2017' Signed-off-by: Maxin B. John --- .../libpng/{libpng_1.6.26.bb => libpng_1.6.28.bb}

[OE-core] [PATCH 4/4] libpng12: Upgrade 1.2.56 -> 1.2.57

2017-01-23 Thread Maxin B. John
This upgrade fixes the vulnerability: CVE-2016-10087 License file changes are due to updates in Version and Copyright date. ie: 'libpng versions 1.0.7, July 1, 2000, through 1.2.57, December 29, 2016, are Copyright (c) 2000-2002, 2004, 2006-2016 Glenn Randers-Pehrson' Signed-off-by: Maxin B.

Re: [OE-core] [oe-core][PATCH 1/1] libgcc-common.inc: Fix symbol link to mutilib directories

2017-01-23 Thread Richard Purdie
Hi, On Mon, 2017-01-23 at 11:48 +0800, Yuanjie Huang wrote: > From: Yuanjie Huang > > The multilib symbol links are created for gcc to locate libgcc files. > Its source path contains TARGET_SYS of multilib libgcc. However, a > multilib's TARGET_SYS is not generated

[OE-core] [oe-core][PATCH V3] libgcc-common.inc: Fix symbol link to mutilib directories

2017-01-23 Thread Yuanjie Huang
The multilib symbol links are created for gcc to locate libgcc files. Its source path contains TARGET_SYS of multilib libgcc. However, a multilib's TARGET_SYS is not generated correctly all the time now. For example, MACHINE = "qemumips64" DEFAULTTUNE = "mips64-n32" MULTILIBS =

[OE-core] [PATCH] gstreamer1.0-plugins-base: disable ivorbis

2017-01-23 Thread Ross Burton
Even old hardware these days doesn't really need fixed-integer Vorbis decoding by default, so disable Tremor out of the box. Signed-off-by: Ross Burton --- meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base.inc | 2 +- 1 file changed, 1 insertion(+), 1

Re: [OE-core] [PATCH] busybox: Guard against interrupted compiles

2017-01-23 Thread Richard Purdie
On Mon, 2017-01-23 at 12:26 +, Richard Purdie wrote: > diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes- > core/busybox/busybox.inc > index 1f4a48c..f247e8d 100644 > --- a/meta/recipes-core/busybox/busybox.inc > +++ b/meta/recipes-core/busybox/busybox.inc > @@ -141,6 +141,10

[OE-core] [PATCH] tremor: Use mirror tarball instead of svn url

2017-01-23 Thread Richard Purdie
This is the only remaining svn url in OE-Core and building subversion-native for things like the url checker is wearing and slows down builds. Since this rarely changes, use the mirror tarball instead. Signed-off-by: Richard Purdie ---

Re: [OE-core] How to use WIC to generate raw flash images

2017-01-23 Thread Ed Bartosh
On Fri, Jan 20, 2017 at 10:37:15AM -0800, Rick Altherr wrote: > For OpenBMC (based on Yocto), the target is an SoC that has an external > boot flash connected via SPI. Right now, we have a class ( > https://github.com/openbmc/openbmc/blob/master/meta-phosphor/classes/image-overlay.bbclass) > used

[OE-core] [PATCH] busybox: Guard against interrupted compiles

2017-01-23 Thread Richard Purdie
If busybox is interrupted during do_compile, it can corrupt .config with the suid version, or worse. Typically this leads to files disappearing, particularly /etc/init.d/* which leads to an empty busybox-hwclock. That then results in errors at do_rootfs time due to the missing package. The fix is

Re: [OE-core] [oe-core][PATCH V3] libgcc-common.inc: Fix symbol link to mutilib directories

2017-01-23 Thread Richard Purdie
On Mon, 2017-01-23 at 00:29 -0800, Yuanjie Huang wrote: > The multilib symbol links are created for gcc to locate libgcc files. > Its source path contains TARGET_SYS of multilib libgcc. However, a > multilib's TARGET_SYS is not generated correctly all the time now. > For example, > >   MACHINE =

Re: [OE-core] [PATCH V3] alsa-lib: update 1.1.2 -> 1.1.3

2017-01-23 Thread Burton, Ross
On 23 January 2017 at 13:29, Andreas Müller wrote: > +# no python -> smixer is not build > +ALLOW_EMPTY_${PN} = "1" > Not sure this is the right fix. What package does the Python support go into? The smixer files should be in that package, and the real dependency

[OE-core] [PATCH 0/2] enable swtpm-native

2017-01-23 Thread Patrick Ohly
swtpm (from meta-security) can be compiled for the host and then be used to provide a virtual TPM device in qemu. However, it depends on the native flavor of some recipes in OE-core. Patrick Ohly (2): expect: support native compilation socat: support native compilation

[OE-core] [PATCH 1/2] expect: support native compilation

2017-01-23 Thread Patrick Ohly
This is needed for building the swtpm TPM simulator (recipe in meta-security). "nativesdk" is added just in case that someone also wants this in an SDK. Signed-off-by: Patrick Ohly --- meta/recipes-devtools/expect/expect_5.45.bb | 9 - 1 file changed, 8

Re: [OE-core] [PATCHv2] qemu: Upgrade to 2.7.1

2017-01-23 Thread Richard Purdie
On Mon, 2017-01-23 at 15:29 +0100, Patrick Ohly wrote: > On Mon, 2017-01-23 at 16:01 +0200, Alexander Kanavin wrote: > > > > On 01/20/2017 09:44 PM, Patrick Ohly wrote: > > > > > > > > In contrast to Alexander, I would also keep > > > http://wiki.qemu-project.org/download/${BP}.tar.bz2 in > > >

Re: [OE-core] [PATCHv2] qemu: Upgrade to 2.7.1

2017-01-23 Thread Alexander Kanavin
On 01/20/2017 09:44 PM, Patrick Ohly wrote: In contrast to Alexander, I would also keep http://wiki.qemu-project.org/download/${BP}.tar.bz2 in qemu_2.7.1.bb with SRC_URI =+ because then there can be a qemu_git.bb with a different URL than the one above. I would discourage creation of such

Re: [OE-core] [PATCHv2] qemu: Upgrade to 2.7.1

2017-01-23 Thread Patrick Ohly
On Mon, 2017-01-23 at 16:01 +0200, Alexander Kanavin wrote: > On 01/20/2017 09:44 PM, Patrick Ohly wrote: > > > In contrast to Alexander, I would also keep > > http://wiki.qemu-project.org/download/${BP}.tar.bz2 in qemu_2.7.1.bb > > with SRC_URI =+ because then there can be a qemu_git.bb with a

[OE-core] [PATCH V3] alsa-lib: update 1.1.2 -> 1.1.3

2017-01-23 Thread Andreas Müller
* add PACKAGECONFIF for python: smixer is build with python only * allow empty alsa-lib package for python disabled * fix EXTRA_OECONF: soft-float was never enabled * alsa-fpu.inc: replace tabs by spaces Signed-off-by: Andreas Müller ---

[OE-core] [PATCH] openssl: Fix symlink creation

2017-01-23 Thread David Vincent
Symlinking the openssl configuration file at install time results in errors when overriding it using an external package which also provides openssl-conf. This should be done as a postinstall task for such packages. Signed-off-by: David Vincent ---

Re: [OE-core] [PATCH 00/55] OEQA Framework Refactor & Improvements

2017-01-23 Thread Richard Purdie
On Sat, 2017-01-21 at 12:28 +, Richard Purdie wrote: > On Fri, 2017-01-20 at 11:09 -0600, Aníbal Limón wrote: > > > > This patchset is related to OEQA Framework for details read the RFC > > send to the > > Openembedded architecture ML. > > > >

Re: [OE-core] [PATCH] busybox: Guard against interrupted compiles

2017-01-23 Thread Richard Purdie
On Mon, 2017-01-23 at 15:37 +0100, Mario Domenech Goulart wrote: > On Mon, 23 Jan 2017 13:05:48 + Richard Purdie uxfoundation.org> wrote: > > On Mon, 2017-01-23 at 13:56 +0100, Mario Domenech Goulart wrote: > > > On Mon, 23 Jan 2017 12:35:52 + Richard Purdie > > >

Re: [OE-core] [PATCH] busybox: Guard against interrupted compiles

2017-01-23 Thread Richard Purdie
On Mon, 2017-01-23 at 13:56 +0100, Mario Domenech Goulart wrote: > Hi, > > On Mon, 23 Jan 2017 12:35:52 + Richard Purdie uxfoundation.org> wrote: > > > > > On Mon, 2017-01-23 at 12:26 +, Richard Purdie wrote: > > > > > > diff --git

Re: [OE-core] [PATCH] busybox: Guard against interrupted compiles

2017-01-23 Thread Mario Domenech Goulart
Hi, On Mon, 23 Jan 2017 12:35:52 + Richard Purdie wrote: > On Mon, 2017-01-23 at 12:26 +, Richard Purdie wrote: >> diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes- >> core/busybox/busybox.inc >> index 1f4a48c..f247e8d 100644 >> ---

[OE-core] [PATCH] useradd-staticids: Fix groupadd

2017-01-23 Thread David Vincent
When a group name is duplicated between USERADD_PARAM and GROUPADD_PARAM, this class tries to add it twice which results in failure of the groupadd command. Signed-off-by: David Vincent --- meta/classes/useradd-staticids.bbclass | 4 +++- 1 file changed, 3 insertions(+),

[OE-core] [PATCH 2/2] socat: support native compilation

2017-01-23 Thread Patrick Ohly
This is needed for building the swtpm TPM simulator (recipe in meta-security). Native compilation disables tcp-wrappers by default to simplify the build. "nativesdk" is added just in case that someone also wants this in an SDK. Signed-off-by: Patrick Ohly ---

Re: [OE-core] [PATCH] busybox: Guard against interrupted compiles

2017-01-23 Thread Mario Domenech Goulart
On Mon, 23 Jan 2017 13:05:48 + Richard Purdie wrote: > On Mon, 2017-01-23 at 13:56 +0100, Mario Domenech Goulart wrote: >> >> On Mon, 23 Jan 2017 12:35:52 + Richard Purdie >> wrote: >> >> > On Mon, 2017-01-23 at

[OE-core] [PATCH] runqemu: more verbose error message about missing qemuboot.conf

2017-01-23 Thread Patrick Ohly
When invoking "runqemu" with a mistyped image or architecture name, the resulting error message is about the missing qemuboot.conf, without any indication about the root cause: $ runqemu core-image-mimimal ext4 intel-corei7-64 runqemu - INFO - Assuming MACHINE = intel-corei7-64 runqemu - INFO

Re: [OE-core] ✗ patchtest: failure for openssh: Make sshd-config a package

2017-01-23 Thread Leonardo Sandoval
David, This is what I get from the command line oe-core$ git pw mbox 4904 | git apply --check error: documentation/ref-manual/ref-variables.xml: No such file or directory Meaning that you have a patch on your series that is targeted for the documentation folder, which is not part of the

Re: [OE-core] [PATCH] ed: use yoctoproject mirror for SRC_URI

2017-01-23 Thread Alexander Kanavin
On 01/23/2017 06:20 PM, Ross Burton wrote: We shoud upgrade to the latest release but as new releases are only compressed using lzip that means adding lzip-native to oe-core, so this is a suitable short-term fix. -SRC_URI = "${GNU_MIRROR}/ed/ed-${PV}.tar.gz" +SRC_URI =

Re: [OE-core] ✗ patchtest: failure for openssh: Make sshd-config a package

2017-01-23 Thread David Vincent
On lundi 23 janvier 2017 15:23:36 CET Patchwork wrote: > == Series Details == > > Series: openssh: Make sshd-config a package > Revision: 1 > URL : https://patchwork.openembedded.org/series/4904/ > State : failure > > == Summary == > > > Thank you for submitting this patch series to

Re: [OE-core] [PATCH] sstatesig: don't squash dependencies of useradd packages

2017-01-23 Thread Richard Purdie
On Mon, 2017-01-23 at 16:55 +0200, Maxin B. John wrote: > Ping. This never merged as I was never 100% convinced this was the correct way to solve this problem. I'd be interested to understand if the sstatesig tests in oe-selftest worked after this. I'm hoping this issue has also now been

[OE-core] [PATCH] connman: Add workaround to build with musl & 4.9 headers

2017-01-23 Thread Jussi Kukkonen
Kernel headers break when musl defines IFF_LOWER_UP. While waiting for more proper fix in musl, add a workaround to connman. Signed-off-by: Jussi Kukkonen --- This was tested on top of ross/mut. ...x-compile-on-musl-with-kernel-4.9-headers.patch | 64

Re: [OE-core] [PATCH] ed: use yoctoproject mirror for SRC_URI

2017-01-23 Thread Burton, Ross
On 23 January 2017 at 16:38, Alexander Kanavin < alexander.kana...@linux.intel.com> wrote: > Add UPSTREAM_CHECK_URI please (or file a bug), as I'll surely forget about > the update if the RRS is going to report 'Up-to-date' for this. > Yes, was literally just filing a bug for this now. (#10955)

[OE-core] [PATCH] ed: use yoctoproject mirror for SRC_URI

2017-01-23 Thread Ross Burton
Upstream has removed a number of releases from the canonical download site, including the 1.9 release we were using. We shoud upgrade to the latest release but as new releases are only compressed using lzip that means adding lzip-native to oe-core, so this is a suitable short-term fix.

Re: [OE-core] ✗ patchtest: failure for openssh: Make sshd-config a package

2017-01-23 Thread David Vincent
On lundi 23 janvier 2017 10:08:04 CET Leonardo Sandoval wrote: > David, This is what I get from the command line > > oe-core$ git pw mbox 4904 | git apply --check > error: documentation/ref-manual/ref-variables.xml: No such file or directory > > Meaning that you have a patch on your series that

[OE-core] do_populate_sysroot: Function failed: relocatable_binaries_preprocess

2017-01-23 Thread Paul Gortmaker
After updating this morning (everything on master, re-using the existing build dir that was built OK within the last 48h) I saw this: ERROR: pseudo-native-1.8.1-r0 do_populate_sysroot: pseudo-native: chrpath command failed with exit code 7:

Re: [OE-core] do_populate_sysroot: Function failed: relocatable_binaries_preprocess

2017-01-23 Thread Mark Hatle
On 1/23/17 10:44 AM, Paul Gortmaker wrote: > After updating this morning (everything on master, re-using the existing > build dir that was built OK within the last 48h) I saw this: > > ERROR: pseudo-native-1.8.1-r0 do_populate_sysroot: pseudo-native: chrpath > command failed with exit code 7: >

[OE-core] [PATCH 3/4] rootfs-postcommands: Modify ssh-related commands

2017-01-23 Thread David Vincent
OpenSSH configuration is now a symlink which points to the desired configuration, so the functions that modified it must be updated to modify the target and not override it. Signed-off-by: David Vincent --- meta/classes/rootfs-postcommands.bbclass | 28

[OE-core] [PATCH 0/4] openssh: Make sshd-config a package

2017-01-23 Thread David Vincent
This series of patch introduces a new way of modifying OpenSSH sshd configuration. Instead of modifying the files and launching the server with custom options, a package which RPROVIDES sshd-config must be installed. The package to use is selected using a new variable called SSHD_CONFIG which is

[OE-core] [PATCH 1/4] openssh: Package server configuration

2017-01-23 Thread David Vincent
Split sshd configuration for read-write/read-only rootfs in two distinct packages. Also, add a package dependency between openssh-sshd package and a provider of sshd-config. Signed-off-by: David Vincent --- meta/recipes-connectivity/openssh/openssh_7.3p1.bb | 47

Re: [OE-core] [PATCH] sstatesig: don't squash dependencies of useradd packages

2017-01-23 Thread Maxin B. John
Ping. On Mon, Dec 12, 2016 at 03:48:04PM +0200, Maxin B. John wrote: > Without this change, sstate dependency filter squashes dependencies > of packages which inherits useradd class. That causes failures while > rebuilding it for another MACHINE. > > Fixes [YOCTO #8078] > > Signed-off-by: Maxin

[OE-core] ✗ patchtest: failure for openssh: Make sshd-config a package

2017-01-23 Thread Patchwork
== Series Details == Series: openssh: Make sshd-config a package Revision: 1 URL : https://patchwork.openembedded.org/series/4904/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed on

[OE-core] [PATCH 4/4] ref-manual: Add SSHD_CONFIG

2017-01-23 Thread David Vincent
Add description for the SSHD_CONFIG variable which is used to select the package to use as provider for sshd-config. Signed-off-by: David Vincent --- documentation/ref-manual/ref-variables.xml | 21 + 1 file changed, 21 insertions(+) diff --git

[OE-core] Yocto Project Status WW04’17

2017-01-23 Thread Jolley, Stephen K
Current Dev Position: YP 2.3 M2 Next Deadline: YP 2.3 M2 by Jan 23, 2017 SWAT team rotation: Saul -> Paul on Jan. 20, 2017. SWAT team rotation: Paul -> Ross on Jan. 27, 2017. https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team Key Status/Updates: ·The 2.2.1 release has

[OE-core] [PATCH 2/4] core-image: Set default sshd configuration

2017-01-23 Thread David Vincent
When selecting OpenSSH as ssh server provider instead of dropbear, also install the correct configuration depending on whether the final rootfs is read-only or not. Signed-off-by: David Vincent --- meta/classes/core-image.bbclass | 3 ++- 1 file changed, 2 insertions(+),

[OE-core] ✗ patchtest: failure for QA: create unit tests for event module

2017-01-23 Thread Patchwork
== Series Details == Series: QA: create unit tests for event module Revision: 1 URL : https://patchwork.openembedded.org/series/4918/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed

[OE-core] [PATCH v4 2/2] selftest: sstatetests: skip glibc-initial tests in case of non-glibc distro

2017-01-23 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval Some distros uses non-glibc so skip those tests requiring glibc-initial as target Signed-off-by: Leonardo Sandoval --- meta/lib/oeqa/selftest/sstate.py | 1 +

[OE-core] [PATCH] autotools.bbclass: Change acpaths defaults to be a weak assignment

2017-01-23 Thread Khem Raj
We currently have to override the default setting using a particular assignment order in the recipe, setting it weakly helps to get rid of this problem. Signed-off-by: Khem Raj --- meta/classes/autotools.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[OE-core] [PATCH v4 0/2] Skip imagefeature and sstatetest tests depending on distro

2017-01-23 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval Originally, the selftests were defined for the 'poky' distro. However, there are more supported distros, including nodistro, poky-lsb and poky-tiny. This series just focus on two test cases: imagefeatures and sstatetests.

[OE-core] [PATCH v4 1/2] selftest/imagefeatures: skip weston test if required features are not present

2017-01-23 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval Also, remove hard-coded features because the image already contains them. Signed-off-by: Leonardo Sandoval --- meta/lib/oeqa/selftest/imagefeatures.py | 6 +++--- 1 file changed, 3

Re: [OE-core] ✗ patchtest: failure for QA: create unit tests for event module

2017-01-23 Thread Leonardo Sandoval
Jair, patchtest failed because your series is intended for bitbake project, not oe-core. Please send your series to Mailing list: bitbake-de...@lists.openembedded.org On 01/23/2017 12:53 PM, Patchwork wrote: == Series Details == Series: QA: create unit tests for event module Revision:

Re: [OE-core] ✗ patchtest: failure for QA: create unit tests for event module

2017-01-23 Thread Jair Gonzalez
Leonardo, Thank you for the clarification and sorry for the error. I'll re-submit it to the correct list. Regards, Jair > -Original Message- > From: Leonardo Sandoval > [mailto:leonardo.sandoval.gonza...@linux.intel.com] > Sent: Monday, January 23, 2017 3:13 PM > To:

[OE-core] [PATCH] gobject-introspection: Fix sysroot postinst scripting error

2017-01-23 Thread Richard Purdie
Clearly the echo into ld.so.conf doesn't make sense and there was a cut and paste error when writing this code. As long as the directory existed, the builds worked so it created a race. Fix it as people hit build failures. Signed-off-by: Richard Purdie ---

[OE-core] ✗ patchtest: failure for sanity/abi-version: Force a clean TMPDIR after recipe specific sysroot changes

2017-01-23 Thread Patchwork
== Series Details == Series: sanity/abi-version: Force a clean TMPDIR after recipe specific sysroot changes Revision: 1 URL : https://patchwork.openembedded.org/series/4926/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated

[OE-core] ✗ patchtest: failure for gobject-introspection: Fix sysroot postinst scripting error

2017-01-23 Thread Patchwork
== Series Details == Series: gobject-introspection: Fix sysroot postinst scripting error Revision: 1 URL : https://patchwork.openembedded.org/series/4924/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several

Re: [OE-core] [PATCH v2 1/3] ccache.bbclass: enable max size setup for ccache dir

2017-01-23 Thread Andre McCurdy
On Fri, Jan 20, 2017 at 8:47 AM, Yannick GICQUEL wrote: > 2017-01-20 17:23 GMT+01:00 Yannick GICQUEL : >> 2017-01-19 20:02 GMT+01:00 Andre McCurdy : >>> On Thu, Jan 19, 2017 at 7:01 AM, Yannick Gicquel >>>

[OE-core] [PATCH] unfs3: Switch to using mirror tarball instead of subversion

2017-01-23 Thread Richard Purdie
This really is the last subversion url in OE-Core so replacing it with a mirror tarball will save us from the subversion-native build chain. Signed-off-by: Richard Purdie --- meta/recipes-devtools/unfs3/unfs3_0.9.22.r497.bb | 9 ++--- 1 file changed, 6

[OE-core] [PATCH] sanity/abi-version: Force a clean TMPDIR after recipe specific sysroot changes

2017-01-23 Thread Richard Purdie
With the recipe specific sysroots, we need a clean tmpdir, else pseudo-native, openssl-native, subversion-native and serf-native need to be manually cleaned. After these there are probably more places where software doesn't rebuild correctly even if we pass in new parameters to it. The simplest

[OE-core] [PATCH] selftest/devtool: Add test to verify "modify virtual/kernel"

2017-01-23 Thread jose . perez . carranza
From: Jose Perez Carranza The purpose of this test case is to verify that devtool modify works correctly when building the kernel. [YOCTO #10817] Signed-off-by: Jose Perez Carranza --- meta/lib/oeqa/selftest/devtool.py |

[OE-core] [PATCH] elfutils: 0.166->0.168

2017-01-23 Thread Zheng Ruoqin
1) Upgrade elfutils from 0.166 to 0.168 2) Delete 1 patch below to make it compatible with new version elfcmp-fix-self-comparision.patch 3) Modify 4 patches below to make it compatible with new version elfutils-0.166/hppa_backend.diff -> elfutils-0.168/hppa_backend.diff

[OE-core] [PATCH] python: Upgrade both python and python-native to 2.7.13

2017-01-23 Thread Alejandro Hernandez
Rebased: - python-native/multilib.patch - python/multilib.patch - python/01-use-proper-tools-for-cross-build.patch Upstream: - CVE-2016-1000110 Signed-off-by: Alejandro Hernandez --- .../python/python-native/multilib.patch| 96 ++--

Re: [OE-core] [PATCH][Morty] binutils-2.27.inc: Fix alignment frags for aarch64

2017-01-23 Thread Mike Looijmans
On 18-01-17 17:09, akuster808 wrote: On 01/18/2017 04:08 AM, Nathan Rossi wrote: On 18 January 2017 at 19:37, Mike Looijmans wrote: Could someone at least please say "yes" or "no"? I now have three projects waiting for this patch to be included in morty. If it's

Re: [OE-core] [PATCH V3] alsa-lib: update 1.1.2 -> 1.1.3

2017-01-23 Thread Khem Raj
On Mon, Jan 23, 2017 at 6:04 AM, Burton, Ross wrote: > > On 23 January 2017 at 13:29, Andreas Müller > wrote: >> >> +# no python -> smixer is not build >> +ALLOW_EMPTY_${PN} = "1" > > > Not sure this is the right fix. What package does the

Re: [OE-core] [PATCH V3] alsa-lib: update 1.1.2 -> 1.1.3

2017-01-23 Thread Burton, Ross
On 23 January 2017 at 16:59, Khem Raj wrote: > shouldn't shlibs notice and add this dep automatically ? > Yes, but it's the incorrect dependency on PN that is the problem. Ross -- ___ Openembedded-core mailing list

[OE-core] [PATCH 1/1] testimage.bbclass: Add systemd test automatically

2017-01-23 Thread mariano . lopez
From: Mariano Lopez This adds systemd test automatically when an image is build with systemd DISTRO_FEATURE [YOCTO #10935] Signed-off-by: Mariano Lopez --- meta/classes/testimage.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1

Re: [OE-core] ✗ patchtest: failure for openssh: Make sshd-config a package

2017-01-23 Thread Leonardo Sandoval
On 01/23/2017 10:39 AM, David Vincent wrote: On lundi 23 janvier 2017 10:08:04 CET Leonardo Sandoval wrote: David, This is what I get from the command line oe-core$ git pw mbox 4904 | git apply --check error: documentation/ref-manual/ref-variables.xml: No such file or directory Meaning that

Re: [OE-core] [PATCH] tremor: Use mirror tarball instead of svn url

2017-01-23 Thread Khem Raj
On Mon, Jan 23, 2017 at 4:57 AM, Richard Purdie wrote: > This is the only remaining svn url in OE-Core and building subversion-native > for things like the url checker is wearing and slows down builds. Since > this rarely changes, use the mirror tarball

Re: [OE-core] [PATCH] tremor: Use mirror tarball instead of svn url

2017-01-23 Thread Richard Purdie
On Mon, 2017-01-23 at 09:11 -0800, Khem Raj wrote: > On Mon, Jan 23, 2017 at 4:57 AM, Richard Purdie > wrote: > > > > This is the only remaining svn url in OE-Core and building > > subversion-native > > for things like the url checker is wearing and slows down

Re: [OE-core] [PATCH] tremor: Use mirror tarball instead of svn url

2017-01-23 Thread Burton, Ross
On 23 January 2017 at 17:11, Khem Raj wrote: > Do we explicitly add subversion-native to builds ? or is it going to > be removed automatically now that there is nothing needed it ? > subversion-native should still remain though for other layers to use. > It's automatic:

[OE-core] [PATCH] classes/oeqa: Replace subprocess.check_call() with check_output()

2017-01-23 Thread Richard Purdie
If you use subprocess.check_output() the traceback will contain the output when the command fails which is very useful for debugging. There is no good reason not to use this everywhere. Signed-off-by: Richard Purdie --- meta/classes/sstate.bbclass

Re: [OE-core] do_populate_sysroot: Function failed: relocatable_binaries_preprocess

2017-01-23 Thread Richard Purdie
On Mon, 2017-01-23 at 11:44 -0500, Paul Gortmaker wrote: > After updating this morning (everything on master, re-using the > existing > build dir that was built OK within the last 48h) I saw this: > > ERROR: pseudo-native-1.8.1-r0 do_populate_sysroot: pseudo-native: > chrpath command failed with

[OE-core] [bitbake-selftest][PATCH 0/2] QA: create unit tests for event module

2017-01-23 Thread Jair Gonzalez
This patch set adds a test unit to the bitbake event module and appends it to the bitbake-selftest script's dictionary containing the list of the default tests to execute when the script is run. The following changes since commit b47ecf28775830efab423fa12f0addb68671cc06: poky.ent: Added "pip3"

[OE-core] [PATCH] useradd_base: keep group if it still has users

2017-01-23 Thread Ioan-Adrian Ratiu
perform_groupdel() tries to delete a group irrespective if other users have it as their primary group, thus the call to groupdel will fail with the following error error: groupdel: cannot remove the primary group of user '' Add a check to perform_groupdel() to determine if there are other users

[OE-core] [bitbake-selftest][PATCH 1/2] bitbake: tests: create unit tests for event module

2017-01-23 Thread Jair Gonzalez
This change adds a new unit test module (bb.tests.event) for bitbake event. It includes the following items: - Client and server stubs setup - Testing the module's main functions including: - get_class_handlers - set_class_handlers - clean_class_handlers -

[OE-core] [bitbake-selftest][PATCH 2/2] bitbake: selftest: add bb.tests.event to bitbake-selftest

2017-01-23 Thread Jair Gonzalez
Tests for bitbake event module were created on bb.tests.event. This change is to include them on the default test list in bitbake-selftest script. [YOCTO #10368] Signed-off-by: Jair Gonzalez --- bitbake/bin/bitbake-selftest | 1 + 1 file