[OE-core] [PATCH] weston: Add missing DEPENDS on wayland-native

2016-01-24 Thread Richard Purdie
Weston needs wayland-scanner which comes from wayland-native. Add the missing dependency to avoid build failures from: bitbake wayland; bitbake wayland-native:do_clean weston:do_cleansstate; bitbake weston Signed-off-by: Richard Purdie diff --git

[OE-core] [PATCH] systemd: make TEST_DIR configurable

2016-01-24 Thread rongqing.li
From: Roy Li 1. make TEST_DIR configurable, and configure it to ptest dir, since the *.service for test are installed into ptest dir. 2. always follow symbolic links in SOURCE when copy test files to install dir, since some *.service under test dir are linked to

[OE-core] [PATCH] bind: update to 9.10.3-P3

2016-01-24 Thread Derek Straka
Addresses CVE-2015-8704 and CVE-2015-8705 CVE-2015-8704 Allows remote authenticated users to cause a denial of service via a malformed Address Prefix List record CVE-2015-8705: When debug loggin is enabled, allows remote attackers to cause a denial of service or have possibly unspecified

Re: [OE-core] [PATCH] bind: update to 9.10.3-P3

2016-01-24 Thread Derek Straka
Thanks Ross. I was a little overzealous using my history without validating the recipient. Sorry for the ML noise. -Derek On Sun, Jan 24, 2016 at 8:13 AM, Derek Straka wrote: > Addresses CVE-2015-8704 and CVE-2015-8705 > > CVE-2015-8704 > Allows remote authenticated users

Re: [OE-core] [PATCH] avahi: Add patch to fix Win10 mDNS issues

2016-01-24 Thread Burton, Ross
On 23 January 2016 at 18:36, wrote: > Good enough reasoning for me. As I noted, I was on the fence anyway. > Comment > to that effect in the recipe, simply leave it to the commit message, or > some exotic ${bb shell} conditional include? > Just put it in the SRC_URI in

Re: [OE-core] [meta-python][PATCH 01/13] meta-python: update pypi class to avoid setuptool inherit to be more flexible

2016-01-24 Thread Burton, Ross
Hi Derek, Wrong list I'm afraid - patches for meta-oe should go to openembedded-devel@ . Ross On 23 January 2016 at 23:09, Derek Straka wrote: > --- > meta-python/classes/pypi.bbclass | 4 +--- >

Re: [OE-core] [PATCH 1/1] wget: inherit perlnative

2016-01-24 Thread Khem Raj
On Sun, Jan 24, 2016 at 10:44 PM, wrote: > From: Kai Kang > > In wget 1.17, it add option '--utf8' for command pod2man to create doc > files. pod2man doesn't support that option on some host such as SLED 11. > > Inherit perlnative to provides

Re: [OE-core] [PATCH 0/1] Don't expand vars which starts with multilib prefix already

2016-01-24 Thread Kang Kai
On 2015年12月03日 09:54, Kang Kai wrote: On 2015年11月13日 17:24, kai.k...@windriver.com wrote: From: Kai Kang Test steps: 1 set MACHINE and multilibs in local.conf === MACHINE = "qemux86-64" require conf/multilib.conf MULTILIBS =

[OE-core] [PATCH 0/1] Add dependency perl-native for wget

2016-01-24 Thread kai.kang
From: Kai Kang The following changes since commit a304b820b87ad4ba90a3e121cf864c445fee710c: weston: Add missing DEPENDS on wayland-native (2016-01-24 10:55:50 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib kangkai/wget

[OE-core] [PATCH 1/1] wget: inherit perlnative

2016-01-24 Thread kai.kang
From: Kai Kang In wget 1.17, it add option '--utf8' for command pod2man to create doc files. pod2man doesn't support that option on some host such as SLED 11. Inherit perlnative to provides native pod2man to fix this issue. Signed-off-by: Kai Kang

Re: [OE-core] [PATCH 2/2] local.conf.sample: Document HOW-TO enable systemd or busbox to replace sysvinit

2016-01-24 Thread Paul Eggleton
On Fri, 22 Jan 2016 20:49:10 Khem Raj wrote: > OE core provides systemd,busybox as options for system init system along > with sysvinit being the default. Document the needed settings to enable > systemd and busybox as options if user wishes. > > Signed-off-by: Khem Raj > ---

[OE-core] [PATCH 06/13] oeqa/testimage: Added support for folder names in TEST_SUITES.

2016-01-24 Thread Costin Constantin
From: Lucian Musat You can add oeqa.runtime. and it will run all the tests found in it. Basically extends the functionality of feature [YOCTO #7834] Signed-off-by: Lucian Musat --- meta/classes/testimage.bbclass | 11 ++- 1 file

[OE-core] [PATCH 07/13] oeqa/runexported: Added support for folder names in TEST_SUITES.

2016-01-24 Thread Costin Constantin
From: Lucian Musat It can accept parameters like oeqa.runtime. and it will run all test files from that folder. Signed-off-by: Lucian Musat --- meta/lib/oeqa/runexported.py | 6 ++ 1 file changed, 6 insertions(+) diff --git

[OE-core] [PATCH 08/13] oeqa/runexported: The runner supports tests from other layers.

2016-01-24 Thread Costin Constantin
From: Lucian Musat It looks in "extralayers" folder if it can't find the test that needs to be run. Signed-off-by: Lucian Musat --- meta/lib/oeqa/runexported.py | 14 ++ 1 file changed, 14 insertions(+) diff --git

[OE-core] [PATCH 05/13] oeqa/runexported: Fix a problem with ssh_target_log symlink.

2016-01-24 Thread Costin Constantin
From: Lucian Musat Signed-off-by: Lucian Musat --- meta/lib/oeqa/runexported.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/runexported.py b/meta/lib/oeqa/runexported.py index d273d2f..f147089 100755 ---

[OE-core] [PATCH 03/13] utils/decorators.py: add TestNeedsBin() decorator

2016-01-24 Thread Costin Constantin
TestNeedsBin() is used in all tests where binaries are required. It offers functionality to send binaries to DUTs both in unpacked (raw) and in an .rpm form. It is able to handle native binaries, intended for the machine launching tests on DUTs. It also offers functionality for removing DUTs

[OE-core] [PATCH 01/13] oeqa/utils/testexport.py: add functionality for exporting binaries

2016-01-24 Thread Costin Constantin
This new file is encapsulating functionality for both running tests with binaries support via TestNeedsBin() decorator and exporting these binaries via testimage.bbclass file. Addresses [YOCTO #7850], [YOCTO #8478], [YOCTO #8481], [YOCTO #8536], [YOCTO #8694]. Signed-off-by: Costin Constantin

[OE-core] [PATCH 04/13] oeqa/runexported: Add option to run arbitrary tests.

2016-01-24 Thread Costin Constantin
From: Lucian Musat You can now overwrite the default TEST_SUITES from the json file and can choose the tests you want to run. Also you can display the list of tests. Signed-off-by: Lucian Musat --- meta/lib/oeqa/runexported.py | 13

[OE-core] [PATCH 02/13] classes/testimage.bbclass: add support for binaries export

2016-01-24 Thread Costin Constantin
Some test cases require support for target and native binaries. This enhancement is designed to help exporting testing environment for machines where poky/bitbake environment is not available. At the same time, tarball files are created that encapsulate native, target specific and runner related

[OE-core] [PATCH 09/13] oeqa/runexported: Add parameter support for machine arch.

2016-01-24 Thread Costin Constantin
From: Lucian Musat Added support to change machine architecture on the fly and support for future TestNeedsBin decorator for tests that need binaries. Signed-off-by: Lucian Musat Signed-off-by: Costin Constantin

[OE-core] [PATCH 10/13] oeqa/testimage: Added export features.

2016-01-24 Thread Costin Constantin
From: Lucian Musat It is now possible to export tests from all the layers that are added in bblayers even when grouped in folders. They are exported in another folder called "extralayers" and nicely grouped per layer so the test files won't mingle. If a layer contains a

[OE-core] [PATCH 11/13] oeqa/runtime: Copy all __init__.py files from all layers.

2016-01-24 Thread Costin Constantin
From: Lucian Musat Copy all the __init__.py files from all the extra layers also, specified in bblayers.conf, in accordance to TEST_SUITES variable. Signed-off-by: Lucian Musat --- meta/classes/testimage.bbclass | 67

[OE-core] [PATCH 12/13] buildtools-with-tc.bb: extend buildtools-tarball to include test cases

2016-01-24 Thread Costin Constantin
recipes-core/meta/buildtools-with-tc.bb is a new recipe that uses all buildtools-tarball has to offer and adds test cases support. Signed-off-by: Costin Constantin --- meta/recipes-core/meta/buildtools-with-tc.bb | 37 1 file changed,

[OE-core] [PATCH 13/13] Files to test the patch set.

2016-01-24 Thread Costin Constantin
Please don't include these files. Their sole purpose is to provide necessary ground to easily test the patch set. Signed-off-by: Costin Constantin --- meta/lib/oeqa/runtime/mytest.py| 25 +

Re: [OE-core] [PATCH 2/2] local.conf.sample: Document HOW-TO enable systemd or busbox to replace sysvinit

2016-01-24 Thread Khem Raj
On Sun, Jan 24, 2016 at 11:21 AM, Paul Eggleton wrote: > On Fri, 22 Jan 2016 20:49:10 Khem Raj wrote: >> OE core provides systemd,busybox as options for system init system along >> with sysvinit being the default. Document the needed settings to enable >> systemd

[OE-core] Jethro backport request

2016-01-24 Thread akuster808
Please backport a2f23fa62858b89850aab339ddec16dcf6026b37 from master to Jethro regards, Armin -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core