[OE-core] [fido][PATCH] gst-plugins-bad: fix CVE-2015-0797

2015-06-29 Thread Andre McCurdy
From: Kang Kai Backport patch from debian to fix CVE-2015-0797. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784220 https://sources.debian.net/data/main/g/gst-plugins-bad0.10/0.10.23-7.1+deb7u2/debian/patches/buffer-overflow-mp4.patch Backported to oe-core fido from meta-oe/meta-multimedia

[OE-core] [PATCH] systemd: fix systemd-udev-hwdb-update service

2015-06-29 Thread rongqing.li
From: Chen Qi The new version of systemd has implemented the following feature. Opointer.de/blog/projects/stateless.html As a result, the systemd-udev-hwdb-update.service would always run at first boot. This will cause failure if the target device doesn't have enough storage space. Besides, as w

[OE-core] [PATCH 0/1] logrotate: 3.8.8 -> 3.9.1

2015-06-29 Thread Robert Yang
The following changes since commit 592a1d94a7b0e80059016adb59c4c61e256206f0: oeqa/parselogs: Whitelist qemumips64 runtime error (2015-06-27 22:49:49 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/logrotate http://cgit.openembedded.o

[OE-core] [PATCH 1/1] logrotate: 3.8.8 -> 3.9.1

2015-06-29 Thread Robert Yang
Updated: - act-as-mv-when-rotate.patch - disable-check-different-filesystems.patch - update-the-manual.patch - base_contains -> bb.utils.contains [YOCTO #7346] Signed-off-by: Robert Yang --- .../logrotate/act-as-mv-when-rotate.patch | 65 .../disable-check-differ

[OE-core] [PATCH 0/2] bootimg.bbclass: fixes for iso and hddimg

2015-06-29 Thread Robert Yang
The following changes since commit 592a1d94a7b0e80059016adb59c4c61e256206f0: oeqa/parselogs: Whitelist qemumips64 runtime error (2015-06-27 22:49:49 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/boot http://cgit.openembedded.org/cg

[OE-core] [PATCH 1/2] bootimg.bbclass:iso: use mkisofs -iso-level 3 for large iso

2015-06-29 Thread Robert Yang
There will be problems when rootfs.img is larger than 4GB: mkisofs: Value too large for defined data type. File /path/to/iso/rootfs.img is too large for current mkisofs settings - ignoring And will get a wrong iso. Check the size of ${ISODIR}/rootfs.img, use mkisofs -iso-level 3 when it exceeds

[OE-core] [PATCH 2/2] bootimg.bbclass:hddimg: check the size of rootfs.img for hddimg

2015-06-29 Thread Robert Yang
The hddimg uses FAT, so the single file size should be less than 4GB, otherwise errors, check that and error out. Another way might be use ext2/3/4 rather than FAT, but EFI only supports FAT, if we make EFI use FAT, and non-EFI use extX, that would the code very different, which seems not worth.

Re: [OE-core] [PATCH v3] wpa-supplicant: Fix CVE-2015-4142

2015-06-29 Thread fan.xin
wpa-supplicant: backport patch to fix CVE-2015-4142 Backport patch to fix CVE-2015-4142. This patch is originally from: http://w1.fi/security/2015-3/0001-AP-WMM-Fix-integer-underflow-in-WMM-Action-frame-par.patch Signed-off-by: Fan Xin --- ...integer-underflow-in-WMM-Action-frame-par.patch | 4

Re: [OE-core] [PATCH] buildhistory.bbclass: Create a files-in-.txt containg recipe's pkg files

2015-06-29 Thread Andre McCurdy
Hi Leonardo, On Thu, Jun 25, 2015 at 6:46 AM, wrote: > From: Leonardo Sandoval > > A file similar (in format) to files-in-image.txt is created for each > recipe's build package. This would allow to easily see what the > recipe's package may install when including it into an image. > > These file

Re: [OE-core] [PATCH 8/8] perl-ptest: fix RDEPENDS

2015-06-29 Thread Robert Yang
On 06/30/2015 12:41 AM, Burton, Ross wrote: On 24 June 2015 at 08:49, Robert Yang mailto:liezhi.y...@windriver.com>> wrote: Sorry, please drop the last patch [PATCH 8/8] , I copy it from IMAGE_INSTALL, but it isn't correct, other patches are fine. Will there be a follow-up patch to f

[OE-core] cmake update broke mariadb

2015-06-29 Thread akuster808
Hello, eo-core commit f8661aa "cmake: Upgrade 2.8.12.2 -> 3.2.2" broke mariadb in meta-oe. DOes the person who updated cmake need to fix this or the person who is feeling the pain will be fixing it ? - armin -- ___ Openembedded-core mailing list

[OE-core] [PATCH] qemu: OpenSUSE 13.2 configure error

2015-06-29 Thread Juro Bystricky
Under some circumstances, on OpenSUSE 13.2 qemu-native configure can fail with the error: ERROR: User requested feature sdl configure was not able to find it The following sequence can reproduce the build error: $ bitbake libgpg-error-native $ bitbake qemu-native Qemu configure tests fo

Re: [OE-core] [wic][PATCH 04/20] wic: Refactor getting bitbake variables

2015-06-29 Thread Christopher Larson
On Mon, Jun 29, 2015 at 12:10 PM, Ed Bartosh wrote: > +global _BITBAKE_VARS > + > +if image not in _BITBAKE_VARS: > In general, I’d suggest using a cache class/object rather than globals, similar to how it’s handled in bb.checksum, or a transparent LRU. Whenever a cache is involved, it’s

[OE-core] [PATCH 3/3] recipetool.append: add extralines arg to appendsrc

2015-06-29 Thread Christopher Larson
This makes the function more reusable for other sub-commands. Signed-off-by: Christopher Larson --- scripts/lib/recipetool/append.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lib/recipetool/append.py b/scripts/lib/recipetool/append.py index 9903871..24a7903

[OE-core] [PATCH 1/3] recipetool: catch BBHandledException from parsing

2015-06-29 Thread Christopher Larson
This ensures that we don't see a traceback on parsing failures. Signed-off-by: Christopher Larson --- scripts/recipetool | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/recipetool b/scripts/recipetool index c68bef4..3063cf7 100755 --- a/scripts/recipetool +++

[OE-core] [PATCH 0/3] One recipetool fix and a couple enhancements

2015-06-29 Thread Christopher Larson
With this in, we can add custom recipetool commands in layers, which is a useful capability. For Mentor, I intend to add https://gist.github.com/kergoth/14ea8d0932f321b60d49 into meta-mentor/meta-mel/lib/recipetool/ to get some convenience sub-commands available: $ recipetool kernel_set_defco

[OE-core] [PATCH 2/3] recipetool: also load plugins from BBPATH

2015-06-29 Thread Christopher Larson
This makes it easier to extend, as a layer can add its own sub-commands. Signed-off-by: Christopher Larson --- scripts/recipetool | 67 -- 1 file changed, 40 insertions(+), 27 deletions(-) diff --git a/scripts/recipetool b/scripts/recipetool i

Re: [OE-core] fido status

2015-06-29 Thread Andre McCurdy
On Mon, Jun 29, 2015 at 3:19 AM, Joshua Lock wrote: > On Sun, 2015-06-28 at 11:14 +0100, Richard Purdie wrote: >> I just wanted to let people know what is going on with Fido. >> >> Joshua has had a branch in testing for a while. The autobuilder gave >> mixed feedback for it. Partly, there was a pr

Re: [OE-core] [PATCH] mesa: Add blank r600 PACKAGECONFIG

2015-06-29 Thread Burton, Ross
On 29 June 2015 at 20:44, Moseley, Drew wrote: > It’s very possible that this is not the best solution for the warning. > The line that sets the GALLIUMDRIVERS_LLVM33 variable right above the line > I added is ultimately what I’m trying to have behave properly. Previously > setting PACKAGECONFIG

Re: [OE-core] [PATCH] mesa: Add blank r600 PACKAGECONFIG

2015-06-29 Thread Moseley, Drew
> On Jun 29, 2015, at 3:32 PM, Martin Jansa wrote: > > On Mon, Jun 29, 2015 at 02:23:50PM -0400, Drew Moseley wrote: >> Fixes warnings such as: >>WARNING: mesa: invalid PACKAGECONFIG: r600 >> when building with the r600 configuration. > > Shouldn't you fix your PACKAGECONFIG value instead (

Re: [OE-core] [PATCH] mesa: Add blank r600 PACKAGECONFIG

2015-06-29 Thread Martin Jansa
On Mon, Jun 29, 2015 at 02:23:50PM -0400, Drew Moseley wrote: > Fixes warnings such as: > WARNING: mesa: invalid PACKAGECONFIG: r600 > when building with the r600 configuration. Shouldn't you fix your PACKAGECONFIG value instead (wherever it's set to include r600)? > > Signed-off-by: Drew Mo

[OE-core] [wic][PATCH 10/20] wic: Get rid of useless variable 'image_rootfs'

2015-06-29 Thread Ed Bartosh
Removed useless variable 'image_rootfs' from 4 prepare_rootfs_* methods. Signed-off-by: Ed Bartosh diff --git a/scripts/lib/wic/kickstart/custom_commands/partition.py b/scripts/lib/wic/kickstart/custom_commands/partition.py index 489ebe3..e3ae3ce 100644 --- a/scripts/lib/wic/kickstart/custom_co

[OE-core] [wic][PATCH 07/20] wic: Turn off debug output for 'bitbake -e'

2015-06-29 Thread Ed Bartosh
Switched debug level to 'normal' to prevent huge 'bitbake -e' output to go into wic debug output. This should help to make wic debug info much more clean and easier to read. Signed-off-by: Ed Bartosh diff --git a/scripts/lib/wic/utils/oe/misc.py b/scripts/lib/wic/utils/oe/misc.py index 5d6dadb..

[OE-core] [wic][PATCH 12/20] wic: Refactor prepare_empty_partition API

2015-06-29 Thread Ed Bartosh
Moved code out of prepare_empty_partition* methods to avoid code duplication. Signed-off-by: Ed Bartosh diff --git a/scripts/lib/wic/kickstart/custom_commands/partition.py b/scripts/lib/wic/kickstart/custom_commands/partition.py index 0741bb2..4e8a6a8 100644 --- a/scripts/lib/wic/kickstart/cust

[OE-core] [wic][PATCH 14/20] wic: Fix naming conflict

2015-06-29 Thread Ed Bartosh
Image file name is not unique for the partitions without label. This causes image being rewritten and used as a source for all partitions without label. Wic produces broken or incorrect result images because of that. Added wks line number to the image name to make it unique. Signed-off-by: Ed Bar

[OE-core] [wic][PATCH 16/20] wic: Refactor fstab update code

2015-06-29 Thread Ed Bartosh
Made the code to backup and restore fstab only if it's modified. Cleaned up the code. Made it more pythonic. Improved code readability by moving code from several tiny methods into one place. Signed-off-by: Ed Bartosh diff --git a/scripts/lib/wic/imager/direct.py b/scripts/lib/wic/imager/direc

[OE-core] [wic][PATCH 13/20] wic: Remove duplicated code

2015-06-29 Thread Ed Bartosh
Moved duplicated code of geting rootfs size out of prepare_rootfs* methods. Signed-off-by: Ed Bartosh diff --git a/scripts/lib/wic/kickstart/custom_commands/partition.py b/scripts/lib/wic/kickstart/custom_commands/partition.py index 4e8a6a8..72f617a 100644 --- a/scripts/lib/wic/kickstart/custom

[OE-core] [wic][PATCH 17/20] wic: Remove __write_partition method

2015-06-29 Thread Ed Bartosh
Moved code of __write_partition to 'assemble' method. This way it should be more readable. Signed-off-by: Ed Bartosh diff --git a/scripts/lib/wic/utils/partitionedfs.py b/scripts/lib/wic/utils/partitionedfs.py index d61087a..ca4b1f0 100644 --- a/scripts/lib/wic/utils/partitionedfs.py +++ b/scri

[OE-core] [wic][PATCH 18/20] wic: Fix confusing error message

2015-06-29 Thread Ed Bartosh
Wic throws this message when any of the build artifacts are not provided: Build artifacts not completely specified, exiting. (Use 'wic -e' or 'wic -r -b -k -n' to specify artifacts) It was not clear which artifact was not specified. Reworked the code to specify list of missed artifacts. Now

[OE-core] [wic][PATCH 19/20] wic: Code cleanup: long lines, identation and whitespaces

2015-06-29 Thread Ed Bartosh
Fixed pylint warnings bad-continuation, bad-continuation and line-too-long. Signed-off-by: Ed Bartosh diff --git a/scripts/lib/image/engine.py b/scripts/lib/image/engine.py index 92dcc5a..0dc7920 100644 --- a/scripts/lib/image/engine.py +++ b/scripts/lib/image/engine.py @@ -236,7 +236,10 @@ def

[OE-core] [wic][PATCH 20/20] wic: Code cleanup: unused imports

2015-06-29 Thread Ed Bartosh
Fixed pylint warning unused-import Signed-off-by: Ed Bartosh diff --git a/scripts/lib/image/engine.py b/scripts/lib/image/engine.py index 0dc7920..73e8f8b 100644 --- a/scripts/lib/image/engine.py +++ b/scripts/lib/image/engine.py @@ -30,18 +30,10 @@ import os import sys -from abc import ABCM

[OE-core] [wic][PATCH 11/20] wic: Call methods better way

2015-06-29 Thread Ed Bartosh
Shortened code by using getattr to obtain a method to call for prepare_empty_partition_* and prepare_rootfs_* methods. Signed-off-by: Ed Bartosh diff --git a/scripts/lib/wic/kickstart/custom_commands/partition.py b/scripts/lib/wic/kickstart/custom_commands/partition.py index e3ae3ce..0741bb2 10

[OE-core] [wic][PATCH 00/20] miscellaneous fixes. poky-conrib:ed/wic/misc

2015-06-29 Thread Ed Bartosh
Hi, This patchset includes usability fixes, new functionality, code cleanup, refactoring and 2 new test cases for wic. The work was done during verification of multi-rootfs EFI images. Fixes YOCTO #7854 and #7912 Ed Bartosh (20): wic: Fix misleading message wic: Test rootfs plugin using ima

[OE-core] [wic][PATCH 09/20] wic: Rename partition images

2015-06-29 Thread Ed Bartosh
Renamed partition images into .p This should make output directory look more organized and easier to understand. Signed-off-by: Ed Bartosh diff --git a/scripts/lib/wic/utils/partitionedfs.py b/scripts/lib/wic/utils/partitionedfs.py index e093ec5..d61087a 100644 --- a/scripts/lib/wic/utils/parti

[OE-core] [wic][PATCH 06/20] wic: Remove annoing debug message

2015-06-29 Thread Ed Bartosh
Wic tries to find plugins in every layer and prints a message 'Plugin dir is not a directory or does not exist' if layer doesn't have plugin dir. It causes a lot of duplicated messages in the debug output, which makes it hard to find useful info there. Signed-off-by: Ed Bartosh diff --git a/scri

[OE-core] [wic][PATCH 15/20] wic: Add --uuid partition option

2015-06-29 Thread Ed Bartosh
Added --uuid option to the configuration of wks parser. This option specifies partition UUID. The code to process it is already in place. It was implemented for --use-uuid option. Signed-off-by: Ed Bartosh diff --git a/scripts/lib/image/help.py b/scripts/lib/image/help.py index c8b2fab..0666d80

[OE-core] [wic][PATCH 08/20] wic: Refactor prepare_rootfs API

2015-06-29 Thread Ed Bartosh
Moved code out of prepare_roots* methods to avoid code duplication. Signed-off-by: Ed Bartosh diff --git a/scripts/lib/wic/kickstart/custom_commands/partition.py b/scripts/lib/wic/kickstart/custom_commands/partition.py index 324ea69..489ebe3 100644 --- a/scripts/lib/wic/kickstart/custom_command

[OE-core] [wic][PATCH 04/20] wic: Refactor getting bitbake variables

2015-06-29 Thread Ed Bartosh
Wic gets bitbake variables by parsing output of 'bitbake -e' command. This implementation improves this procedure as it runs 'bitbake -e' only when API is called and does it only once, i.e. in a "lazy" way. As parsing results are cached 'bitbake -e' is run only once and results are parsed only onc

[OE-core] [wic][PATCH 05/20] wic: Include mount point into image report

2015-06-29 Thread Ed Bartosh
Wic doesn't show any information for the partition if label is not set. Fixed this by adding mount point to the report. Signed-off-by: Ed Bartosh diff --git a/scripts/lib/wic/imager/direct.py b/scripts/lib/wic/imager/direct.py index 2ea7e4e..58a9e9d 100644 --- a/scripts/lib/wic/imager/direct.py

[OE-core] [wic][PATCH 02/20] wic: Test rootfs plugin using image recipes

2015-06-29 Thread Ed Bartosh
Added canned wks and testcase to create multi-rootfs images referring bitbake image recipes. Signed-off-by: Ed Bartosh create mode 100644 scripts/lib/image/canned-wks/directdisk-multi-rootfs.wks diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index 5385562..3cfc2ff 1

[OE-core] [wic][PATCH 03/20] wic: Test rootfs plugin using rootfs paths

2015-06-29 Thread Ed Bartosh
Added testcase to create multi-rootfs images using rootfs plugin with paths to rootfs directories in wic command line. Signed-off-by: Ed Bartosh diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index 3cfc2ff..0c503ef 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta

[OE-core] [wic][PATCH 01/20] wic: Fix misleading message

2015-06-29 Thread Ed Bartosh
Due to usage of incorrect variable wic produces strange message "No image named None found, exiting." when specified canned .wks doesn't exist. Fixed by replacing wks_file -> argv[0] Signed-off-by: Ed Bartosh diff --git a/scripts/wic b/scripts/wic index f9be972..a39ec95 100755 --- a/scripts/wic

[OE-core] [PATCH] mesa: Add blank r600 PACKAGECONFIG

2015-06-29 Thread Drew Moseley
Fixes warnings such as: WARNING: mesa: invalid PACKAGECONFIG: r600 when building with the r600 configuration. Signed-off-by: Drew Moseley --- meta/recipes-graphics/mesa/mesa.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/m

Re: [OE-core] [PATCH 8/8] perl-ptest: fix RDEPENDS

2015-06-29 Thread Burton, Ross
On 24 June 2015 at 08:49, Robert Yang wrote: > Sorry, please drop the last patch [PATCH 8/8] , I copy it from > IMAGE_INSTALL, but it isn't correct, other patches are fine. > Will there be a follow-up patch to fix the rdepends so they're complete? Or is the current set good as it is? Ross -- _

Re: [OE-core] [PATCH] bootchart2: add runtime dependency

2015-06-29 Thread Richard Purdie
On Mon, 2015-06-29 at 13:39 +0800, rongqing...@windriver.com wrote: > From: Roy Li > > bootchartd needs the command lsb_release and pidof to run, pidof maybe > provided by sysvinit or procpus > > Signed-off-by: Roy Li > --- > meta/recipes-devtools/bootchart2/bootchart2_git.bb | 2 ++ > 1 file

Re: [OE-core] [oe] Fwd: open source conference in Honduras needs Yocto Project/Openembedded/OpenHardware speaker

2015-06-29 Thread Stephen Arnold
Then I assume open source and related examples related to open hardware? Most of the "open" hardware I've got is still tied to vendor blobs/forks; several specific machines have good mainline kernel/u-boot support (with a few patches) but that's about as far as things go, although some of the vide

Re: [OE-core] [wic][PATCH 4/6] wic: Implement image compressing

2015-06-29 Thread Philip Balister
On 06/27/2015 06:20 PM, João Henrique Ferreira de Freitas wrote: > Hi, > > Maybe using an environment variable? > Handle it the same way we handle PARALLEL_MAKE and BBTHREADS. Philip > > > On 24/06/2015 12:23, Ed Bartosh wrote: >> On Tue, Jun 23, 2015 at 07:22:49AM -0400, Philip Balister wro

[OE-core] [PATCH] scripts/oe-selftest: Added mechanism for including/removing bblayers.inc

2015-06-29 Thread Daniel Istrate
When oe-selftest starts it includes bblayers.inc into bblayers.conf When oe-selftest ends it deletes bblayers.inc and the included line from bblayers.conf Signed-off-by: Daniel Istrate --- scripts/oe-selftest | 16 +++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/sc

[OE-core] [PATCH 1/1] sanity.bbclass: Check if /tmp is writable

2015-06-29 Thread mariano . lopez
From: Mariano Lopez If /tmp can't be written, bitbake gaves an unrelated error. This checks if /tmp can be written in every build. [YOCTO #7922] Signed-off-by: Mariano Lopez --- meta/classes/sanity.bbclass | 13 + 1 file changed, 13 insertions(+) diff --git a/meta/classes/sanity.

[OE-core] [PATCH 1/1] runqemu-internal: correctly set format for root FS as raw

2015-06-29 Thread Cristian Iorga
qemu guesses via probing the format of root FS, but gives a warning and restricts write operations on block 0. Fix it by setting correctly the format as raw for more machines and non-KVM machines. In some cases, replaced the way machine disk is set for qemu. Fix for [YOCTO #7918] Signed-off-by: C

[OE-core] [PATCH 0/1] Fix for bug YOCTO #7918

2015-06-29 Thread Cristian Iorga
The following changes since commit 2578ff3dfe55a1c07208401861f96e2e327eacaf: bitbake: codeparser: Add repr() methods (2015-06-27 22:51:21 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ciorga/YB7918 http://git.yoctoproject.org/cgit.cgi/poky-contrib/l

Re: [OE-core] [PATCH 1/1] report-error.bbclass: Added file syncronization.

2015-06-29 Thread Burton, Ross
On 29 June 2015 at 13:45, Martin Jansa wrote: > Even the last task parses the file before appending additional > task failure and dumping it back to the same filename. > You're right Martin, turns out I can't read code... Ross -- ___ Openembedded-cor

Re: [OE-core] [PATCH] unzip: drop 12-cve-2014-9636-test-compr-eb.patch

2015-06-29 Thread Burton, Ross
On 29 June 2015 at 09:06, wrote: > 12-cve-2014-9636-test-compr-eb.patch is same as unzip-6.0_overflow3.diff, > is to fix CVE-2014-9636 > This is going to be sound really picky, but when a patch fixes a CVE I'd like to start moving towards the patch naming reflecting that (for CVE verification pu

Re: [OE-core] [dizzy][PATCH] openssl: upgrade to v1.0.1o

2015-06-29 Thread Hugo Vasconcelos Saldanha
ping On Tue, Jun 23, 2015 at 11:48:23AM -0300, Hugo Vasconcelos Saldanha wrote: > The upgrade fixes the following CVEs: > > CVE-2015-4000 > CVE-2015-1788 > CVE-2015-1789 > CVE-2015-1790 > CVE-2015-1792 > CVE-2015-1791 > > A patch was updated so it could be applied cleanly to the new version. >

[OE-core] [PATCH] tune-i586-nlp: Add new tune file to support Quark/X1000 CPU

2015-06-29 Thread Saul Wold
This tune file is needed to enable a GAS option specific to this cpu family in order to disable the usage of lock prefix instructions. Signed-off-by: Saul Wold --- meta/conf/machine/include/tune-i586-nlp.inc | 19 + 1 file changed, 19 insertions(+) create mode 100644

Re: [OE-core] [PATCH 1/1] report-error.bbclass: Added file syncronization.

2015-06-29 Thread Martin Jansa
On Mon, Jun 29, 2015 at 12:43:04PM +0100, Burton, Ross wrote: > On 29 June 2015 at 12:18, Martin Jansa wrote: > > > This is about multiple TaskFailed events being processed at the same > > time, isn't it? So it's still part of the same report and unrelated to > > uploading to web app. > > > > In

[OE-core] [PATCH] oeqa/selftest: Added @testcase decorators to oeselftest testcases.

2015-06-29 Thread Daniel Istrate
Added decorator to some testcases missing this feature. Signed-off-by: Daniel Istrate --- meta/lib/oeqa/selftest/bblayers.py | 1 + meta/lib/oeqa/selftest/devtool.py | 15 +++ meta/lib/oeqa/selftest/layerappend.py | 1 + meta/lib/oeqa/selftest/lic-checksum.py | 2 ++ met

Re: [OE-core] [PATCH v2] wpa-supplicant: Fix CVE-2015-4142

2015-06-29 Thread Burton, Ross
On 29 June 2015 at 09:11, fan.xin wrote: > Upstream-Status: Backport > This and signed-off-by In the patch header, not the commit message. Ross -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.o

Re: [OE-core] [PATCH 1/1] report-error.bbclass: Added file syncronization.

2015-06-29 Thread Burton, Ross
On 29 June 2015 at 12:18, Martin Jansa wrote: > This is about multiple TaskFailed events being processed at the same > time, isn't it? So it's still part of the same report and unrelated to > uploading to web app. > In which case the last task wins, as they're all writing to the same filename ri

Re: [OE-core] [PATCH 1/4] wayland/weston/libinput: Upgrade to 1.6.0 -> 1.8.0

2015-06-29 Thread Martin Jansa
On Fri, Jun 26, 2015 at 10:37:57AM -0700, Khem Raj wrote: > > > On Jun 26, 2015, at 9:59 AM, Burton, Ross wrote: > > > > On 26 June 2015 at 16:19, Khem Raj > > wrote: > > From a system integrators point of view, I agree with your sentiments. From > > a developers poi

Re: [OE-core] [PATCH 1/4] wayland/weston/libinput: Upgrade to 1.6.0 -> 1.8.0

2015-06-29 Thread Martin Jansa
On Fri, Jun 26, 2015 at 08:19:58AM -0700, Khem Raj wrote: > > > On Jun 26, 2015, at 7:47 AM, Burton, Ross wrote: > > > > > > On 3 June 2015 at 22:21, Khem Raj > > wrote: > > > Can you explain why? The revision looks like 0.16.0 release. > > > > its easy to develop l

Re: [OE-core] [PATCH 1/1] report-error.bbclass: Added file syncronization.

2015-06-29 Thread Martin Jansa
On Fri, Jun 26, 2015 at 04:17:01PM +0100, Burton, Ross wrote: > On 26 June 2015 at 06:56, wrote: > > > errorreport_handler would fail if several errors are > > triggered at the same time because of two proccess > > writting to the same file. This patch add the required > > syncronization to handl

Re: [OE-core] fido status

2015-06-29 Thread Joshua Lock
On Sun, 2015-06-28 at 11:14 +0100, Richard Purdie wrote: > I just wanted to let people know what is going on with Fido. > > Joshua has had a branch in testing for a while. The autobuilder gave > mixed feedback for it. Partly, there was a problem since we'd > introduced > a new autobuilder (Fedora

Re: [OE-core] [PATCH v2][Fido ONLY] binutils: Add -momit-lock-prefix support

2015-06-29 Thread Joshua Lock
On Fri, 2015-06-26 at 14:22 -0700, Saul Wold wrote: > This patch is needed for certain cpus and has been accepted into > upstream Merged to my fido-next branch, thanks Saul. Cheers, Joshua > > Signed-off-by: Saul Wold > --- > v2: rebased patch against fido-next > This patch is already in 2.2

[OE-core] [PATCH] oeqa/selftest: Added new testsuite for image features.

2015-06-29 Thread Daniel Istrate
Automated 5 oe-selftest testcase: - 1107: Check if non root user can connect via ssh without password - 1115: Check if all users can connect via ssh without password - 1114: Check rpm version 4 support on image - 1101: Check if efi/gummiboot images can be buit - 1103: Check tha

[OE-core] [PATCH] oeqa/selftest: Add methods to manipulate bblayers.conf in base.py

2015-06-29 Thread Daniel Istrate
Added methods for manipulating bblayers.conf file in the same manner as local.conf file: - write_bblayers_config - append_bblayers_config - remove_bblayers_config Signed-off-by: Daniel Istrate --- meta/lib/oeqa/selftest/base.py | 22 ++ 1 file changed, 22 inserti

Re: [OE-core] [PATCH 1/5] file: 5.22 -> 5.23

2015-06-29 Thread Robert Yang
On 06/29/2015 04:21 PM, Richard Purdie wrote: On Wed, 2015-06-24 at 01:55 -0700, Robert Yang wrote: Updated 0001-Add-P-prompt-into-Usage-info.patch. Signed-off-by: Robert Yang --- .../file/0001-Add-P-prompt-into-Usage-info.patch |6 +++--- .../file/{file_5.22.bb => file_5.23.bb}

Re: [OE-core] [PATCH v2] wpa-supplicant: Fix CVE-2015-4142

2015-06-29 Thread fan . xin
wpa-supplicant: Fix CVE-2015-4142 wpa-supplicant has a vulnerability aka CVE-2015-4142. This patch fixes CVE-2015-4142. Description on [1] and patch taken from [2]. [1]https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-4142 [2]http://w1.fi/security/2015-3/0001-AP-WMM-Fix-integer-underflo

Re: [OE-core] [PATCH 1/5] file: 5.22 -> 5.23

2015-06-29 Thread Richard Purdie
On Wed, 2015-06-24 at 01:55 -0700, Robert Yang wrote: > Updated 0001-Add-P-prompt-into-Usage-info.patch. > > Signed-off-by: Robert Yang > --- > .../file/0001-Add-P-prompt-into-Usage-info.patch |6 +++--- > .../file/{file_5.22.bb => file_5.23.bb}|6 +++--- > 2 files changed,

[OE-core] [PATCH] perl-native: Specifically undefine other gdbm paths

2015-06-29 Thread Richard Purdie
There is an outside chance gdbm could be found at these other locations, undefine them along with the other variables for completeness. Signed-off-by: Richard Purdie diff --git a/meta/recipes-devtools/perl/perl-native_5.22.0.bb b/meta/recipes-devtools/perl/perl-native_5.22.0.bb index 488871a..d

[OE-core] [PATCH] oeqa/bbtests: Show useful failure message for gplv3 test

2015-06-29 Thread Richard Purdie
If this test fails the current output tells us nothing about what happened. Show the exit status and output to aid debugging. Signed-off-by: Richard Purdie diff --git a/meta/lib/oeqa/selftest/bbtests.py b/meta/lib/oeqa/selftest/bbtests.py index 0dae160..e4f69a3 100644 --- a/meta/lib/oeqa/selfte

Re: [OE-core] [PATCH 1/1] sanity.bbclass: check /bin/sh is dash or bash

2015-06-29 Thread Robert Yang
On 06/29/2015 11:06 AM, Robert Yang wrote: On 06/26/2015 09:10 PM, Burton, Ross wrote: On 26 June 2015 at 07:23, Robert Yang mailto:liezhi.y...@windriver.com>> wrote: The build would fail when /bin/sh links to ksh or csh, we only test dash and bash AFAIK. csh definitely isn't a s

[OE-core] [PATCH] oeqa/bbtests: Improve error handling

2015-06-29 Thread Richard Purdie
Currently if a test fails the cleanup isn't performed, leading to cascade failures in other tests. We can do better. Signed-off-by: Richard Purdie diff --git a/meta/lib/oeqa/selftest/bbtests.py b/meta/lib/oeqa/selftest/bbtests.py index b301d8f..0dae160 100644 --- a/meta/lib/oeqa/selftest/bbtest

[OE-core] [PATCH][v2] mklibs-native: avoid failure on symbol provided by application

2015-06-29 Thread rongqing.li
From: Yuanjie Huang Undefined symbols in a library can be provided by the application that links to the library, such as `logsink' in libmultipath.so.0. This fix checks the type of object in which the symbol is needed and the existence of the symbol in application, when a symbol cannot be provide

[OE-core] [PATCH] unzip: drop 12-cve-2014-9636-test-compr-eb.patch

2015-06-29 Thread rongqing.li
From: Roy Li 12-cve-2014-9636-test-compr-eb.patch is same as unzip-6.0_overflow3.diff, is to fix CVE-2014-9636 Signed-off-by: Roy Li --- .../unzip/12-cve-2014-9636-test-compr-eb.patch | 45 -- meta/recipes-extended/unzip/unzip_6.0.bb | 1 - 2 files changed, 4

Re: [OE-core] [PATCH 0/8] perl 5.20.0 -> 5.22.0 and fix test cases

2015-06-29 Thread Richard Purdie
On Mon, 2015-06-29 at 08:18 +0100, Richard Purdie wrote: > On Mon, 2015-06-29 at 13:29 +0800, Robert Yang wrote: > > > > On 06/29/2015 02:07 AM, Richard Purdie wrote: > > > On Tue, 2015-06-23 at 23:26 -0700, Robert Yang wrote: > > >> * Upgrade perl 5.20.0 -> 5.22.0 > > >> * Tested on qemux86, qemu

Re: [OE-core] [PATCH 0/8] perl 5.20.0 -> 5.22.0 and fix test cases

2015-06-29 Thread Robert Yang
On 06/29/2015 03:18 PM, Richard Purdie wrote: On Mon, 2015-06-29 at 13:29 +0800, Robert Yang wrote: On 06/29/2015 02:07 AM, Richard Purdie wrote: On Tue, 2015-06-23 at 23:26 -0700, Robert Yang wrote: * Upgrade perl 5.20.0 -> 5.22.0 * Tested on qemux86, qemuarm, qemuarm64, qemuppc, qemumips,

Re: [OE-core] [PATCH 0/8] perl 5.20.0 -> 5.22.0 and fix test cases

2015-06-29 Thread Richard Purdie
On Mon, 2015-06-29 at 13:29 +0800, Robert Yang wrote: > > On 06/29/2015 02:07 AM, Richard Purdie wrote: > > On Tue, 2015-06-23 at 23:26 -0700, Robert Yang wrote: > >> * Upgrade perl 5.20.0 -> 5.22.0 > >> * Tested on qemux86, qemuarm, qemuarm64, qemuppc, qemumips, qemux86-64. > >> * Fix for test ca

Re: [OE-core] [PATCH] mklibs-native: avoid failure on symbol provided by application

2015-06-29 Thread Richard Purdie
On Mon, 2015-06-29 at 10:52 +0800, rongqing...@windriver.com wrote: > From: Yuanjie Huang > > Undefined symbols in a library can be provided by the application > that links to the library, such as `logsink' in libmultipath.so.0. > This fix checks the type of object in which the symbol is needed >