Re: [OE-core] [PATCH][fido] bind: CVE-2015-1349 CVE-2015-4620 CVE-2015-5722

2015-09-11 Thread Sona Sarmadi
Hi Armin, I guess you will backport these to dizzy as well. I created Bug 8281 just to have track of recent bind vulnerabilities: CVEs, CVE-2015-1349, CVE-2015-4620, CVE-2015-5477, CVE-2015-5722, CVE-2015-5986. I think all have been addressed in master and fido, remaining are only these three

Re: [OE-core] [PATCH] webkitgtk: add a new recipe for latest upstream version

2015-09-11 Thread alexander . kanavin
> On 10 September 2015 at 19:18, Alexander Kanavin < > alexander.kana...@linux.intel.com> wrote: > >> +Upstream-status: Backport [should appear in 2.10, >> http://trac.webkit.org/changeset/184856] >> > > Capital S in Status, and missing a signed-off-by (your name in the patch > header doesn't

[OE-core] [PATCH] image.py: Allow IMAGE_LINK_NAME to be empty

2015-09-11 Thread Mike Looijmans
From: Mike Looijmans When IMAGE_LINK_NAME is empty, OE will try to create a "blank" link instead of just skipping it. The code checks for "link_name is not None" which will never evaluate to true. Change the test to a simple "if link_name:" so it no longer attempt to

[OE-core] [PATCH] image_types.bbclass: Restore compatibility with previous UBI filesystems

2015-09-11 Thread Mike Looijmans
Support for multiple ubi images has broken dozens of machine deployment scripts in two ways: Previously, ubi filesystems would be named $IMAGE_NAME as one would expect. The current version would append "_rootfs" to that name for no reason. Fix it so that the name for ubi images remains unchanged

[OE-core] Re: [PATCH] matchbox-keyboard: Fix build failure with ld-is-gold

2015-09-11 Thread Carlos Alberto Lopez Perez
On 11/09/15 16:51, Phil Blundell wrote: > On Fri, 2015-09-11 at 14:49 +0200, Carlos Alberto Lopez Perez wrote: >> * When ld-is-gold is enabled in DISTRO_FEATURES, matchbox-keyboard >> will fail to build with this error: >> >> ld: error: matchbox-keyboard-image.o: requires unsupported

[OE-core] [PATCH] devtool: update-recipe: get srcuri parameters with decodeurl()

2015-09-11 Thread Markus Lehtonen
Use already existing bb.fetch.decodeurl() for getting the parameters for a URI. This is more fault tolerant and maintainable. Signed-off-by: Markus Lehtonen --- scripts/lib/devtool/standard.py | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff

Re: [OE-core] [PATCH] webkitgtk: add a new recipe for latest upstream version

2015-09-11 Thread Burton, Ross
On 11 September 2015 at 08:12, wrote: > Wait a moment, why do we need a second signed-off-by there? The commit > that adds the custom patch already has my signed-off-by, so it is > redundant to repeat it I think. > Because the patch and the commit are not

Re: [OE-core] [PATCH] webkitgtk: add a new recipe for latest upstream version

2015-09-11 Thread Burton, Ross
This is now failing on qemumips for me: | /data/poky-master/tmp/sysroots/x86_64-linux/usr/libexec/mips-poky-linux/gcc/mips-poky-linux/5.2.0/ld: CMakeFiles/JavaScriptCore.dir/parser/Lexer.cpp.o: Can't find matching LO16 reloc against `_ZN3JSC5LexerIhE13internalShiftILi4EEEvv.isra.66' for

Re: [OE-core] [PATCH] webkitgtk: add a new recipe for latest upstream version

2015-09-11 Thread alexander . kanavin
> This is now failing on qemumips for me: | CMakeFiles/JavaScriptCore.dir/runtime/JSArray.cpp.o: In function > `JSC::JSArray::push(JSC::ExecState*, JSC::JSValue)': > | >

[OE-core] [PATCH] testimage: Handle core-image-lsb-sdk qemumips test restriction

2015-09-11 Thread Richard Purdie
On qemumips, some tests are slow to the point of the autobuilder appearing hung. We therefore specifically exclude buildsudoku but to do this, we need to list the tests we expect to work on core-image-lsb-sdk. Signed-off-by: Richard Purdie diff --git

Re: [OE-core] [PATCH 3/3] Empty image: filesystem allocation

2015-09-11 Thread Richard Purdie
On Fri, 2015-09-11 at 12:26 -0500, Benjamin Esquivel wrote: > Hi Alejandro, > > On Wed, 2015-08-26 at 16:57 -0500, Alex Franco wrote: > > Increase sparse image block size when ROOTFS_SIZE is smaller than > > the minimum needed for ext4 to fit into it. > > > > [YOCTO #7664] > > > >

[OE-core] [PATCH] as-needed.inc: add babeltrace exception

2015-09-11 Thread Nathan Lynch
The babeltrace command has plugins which it specifies in its link step but on which (in the linker's view) it does not depend, so --as-needed causes some of them to be omitted from the executable's dependencies. This prevents babeltrace on OE-built systems from handling streaming/live tracing

[OE-core] [PATCH] matchbox-keyboard: Fix build failure with ld-is-gold

2015-09-11 Thread Carlos Alberto Lopez Perez
* When ld-is-gold is enabled in DISTRO_FEATURES, matchbox-keyboard will fail to build with this error: ld: error: matchbox-keyboard-image.o: requires unsupported dynamic reloc R_ARM_MOVW_ABS_NC; recompile with -fPIC Signed-off-by: Carlos Alberto Lopez Perez

Re: [OE-core] [PATCH] populate_sdk_base: Fix aarch64 OLDEST_KERNEL sdk issues

2015-09-11 Thread Mark Hatle
On 9/11/15 7:25 AM, Richard Purdie wrote: > aarch64 sets OLDEST_KERNEL to 3.14. This stops the aarch64 SDK installing on > anything with an older kernel which is clearly incorrect. > > I attempted to extract the correct non-overridden version from the data store > but it proved problematic and I

[OE-core] [PATCH] populate_sdk_base: Fix aarch64 OLDEST_KERNEL sdk issues

2015-09-11 Thread Richard Purdie
aarch64 sets OLDEST_KERNEL to 3.14. This stops the aarch64 SDK installing on anything with an older kernel which is clearly incorrect. I attempted to extract the correct non-overridden version from the data store but it proved problematic and I was running into data store issues. Those are a

[OE-core] [PATCH] oeqa/targetbuild: Ensure we run gnu-configize so config files are up to date

2015-09-11 Thread Richard Purdie
On aarch64 we need to do this as the versions in the upstream source don't recognise the target triplet causing SDK test failures. Signed-off-by: Richard Purdie diff --git a/meta/lib/oeqa/utils/targetbuild.py b/meta/lib/oeqa/utils/targetbuild.py index

[OE-core] [PATCH] testimage: Fix SDK extraction error handling

2015-09-11 Thread Richard Purdie
Currently if the SDK fails to extract, no error is shown and the test is marked as passed! Clearly this is incorrect, fix it to correctly raise an error. Signed-off-by: Richard Purdie diff --git a/meta/classes/testimage.bbclass

Re: [OE-core] [PATCH] matchbox-keyboard: Fix build failure with ld-is-gold

2015-09-11 Thread Phil Blundell
On Fri, 2015-09-11 at 14:49 +0200, Carlos Alberto Lopez Perez wrote: > * When ld-is-gold is enabled in DISTRO_FEATURES, matchbox-keyboard > will fail to build with this error: > > ld: error: matchbox-keyboard-image.o: requires unsupported dynamic >reloc

[OE-core] Yocto Project Status WW37

2015-09-11 Thread Jolley, Stephen K
Current Dev Position: 1.9 Milestone 3 (M3) Next Deadline: M3 cut off of August 24th at noon GMT (On hold until most likely next week) SWAT team rotation: Beth -> Saul https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team Key Status/Updates: * M3/Feature freeze is still