Re: [OE-core] [PATCH 1/2] bind: build with threads and update configure options

2017-05-26 Thread Kang Kai
On 2017年05月23日 17:58, Kang Kai wrote: On 2017年05月19日 19:47, Burton, Ross wrote: On 19 May 2017 at 09:52, > wrote: Build without threads for bind is inherited from legacy openembedded. All libc's support proper threading on Linux now, so enable threads

Re: [OE-core] [PATCH 00/36] OEQA threading support and selftest migration

2017-05-26 Thread Richard Purdie
On Fri, 2017-05-26 at 15:37 -0500, Aníbal Limón wrote: > This series is the integration of tree main changes into the OEQA > module, > > * Implement threading support into OEQA core module > * Enables OEQA threaded mode into {,e}SDK test component > * Migrate current oe-selftest to use the same fr

[OE-core] [PATCH] mesa: potentially enable texture float for gallium

2017-05-26 Thread Trevor Woerner
Somewhere along the path from OpenGL ES 2.0 to OpenGL ES 3.0 are some algorithms that are encumbered by patents. These algorithms are enabled with mesa's --enable-texture-float configure flag. However, if hardware acceleration is being used and the hardware supports --enable-texture-float, it means

[OE-core] ✗ patchtest: failure for OEQA threading support and selftest migration

2017-05-26 Thread Patchwork
== Series Details == Series: OEQA threading support and selftest migration Revision: 1 URL : https://patchwork.openembedded.org/series/6941/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been ex

[OE-core] [PATCH 36/36] selftest: Migrate systemd_boot test case to the new framework

2017-05-26 Thread Aníbal Limón
- systemd_boot.py: Use the new case class and change decorator for id - __init__.py: Because isn't needed now Signed-off-by: Aníbal Limón --- meta-yocto-bsp/lib/oeqa/selftest/__init__.py | 0 .../lib/oeqa/selftest/{ => cases}/systemd_boot.py | 14 +- 2 files c

[OE-core] [PATCH 34/36] scripts/oe-selftest: Migrate to new framework into oeqa.selftest.context

2017-05-26 Thread Aníbal Limón
From: Leonardo Sandoval The new OEQA framework aims to re-use code into the different Test components. The previous oe-selftest implements it-self loading, run, and list test cases in a non-standard way (unittest base) and other functionalities like logging that is now on oeqa core. This ends on

[OE-core] [PATCH 33/36] oeqa/selftest/case: Don't figure out the testlayer inside

2017-05-26 Thread Aníbal Limón
The test layer is added at init of selftest and is the same across test runs so pass it as a attr in the context. Signed-off-by: Aníbal Limón --- meta/lib/oeqa/selftest/case.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/lib/oeqa/selftest/case.py b/meta/lib/oeq

[OE-core] [PATCH 29/36] oeqa/selftest: Move base class to case module

2017-05-26 Thread Aníbal Limón
To match the new structure of the OEQA framework. Signed-off-by: Leonardo Sandoval Signed-off-by: Aníbal Limón --- meta/lib/oeqa/selftest/{base.py => case.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename meta/lib/oeqa/selftest/{base.py => case.py} (100%) diff --git a/meta/lib/o

[OE-core] [PATCH 32/36] oeqa/selftest/case.py: Remove machine selection logic

2017-05-26 Thread Aníbal Limón
From: Leonardo Sandoval The machine selection is an operation that needs to be made in every test run, the best place to it is on the context module. Use self.tc.custommachine variable instead of use environment. SIgned-off-by: Leonardo Sandoval Signed-off-by: Aníbal Limón --- meta/lib/oeqa/

[OE-core] [PATCH 31/36] scripts/oe-selftest: Move {add, remove}_include files to case

2017-05-26 Thread Aníbal Limón
From: Leonardo Sandoval The oe-selftest creates include files to store custom configuration to make specific tests, every class executes a different test and may be uses custom configuration. So move to case class in order to simplify oe-selftest script and later implement later a build folder p

[OE-core] [PATCH 26/36] oeqa/core/context: Omit docstring output on XMLResult

2017-05-26 Thread Aníbal Limón
From: Leonardo Sandoval By default, the xml runner class prints out the docstring for every unit test but it order to keep the same format as the standard runner, avoid docstring output setting descriptions to False. Signed-off-by: Leonardo Sandoval --- meta/lib/oeqa/core/context.py | 2 +- 1

[OE-core] [PATCH 28/36] scripts/oe-test: Move load_test_components to oeqa.utils

2017-05-26 Thread Aníbal Limón
In order to maintain compatibility with oe-selftest, the load_test_components needs to be re-used, so the script executor needs to pass to only load components supported by certain script (oe-test, oe-selftest). Signed-off-by: Aníbal Limón --- meta/lib/oeqa/core/context.py | 1 + meta/lib/oeq

[OE-core] [PATCH 30/36] oeqa/selftest/case: Migrate case class to the new OEQA framework

2017-05-26 Thread Aníbal Limón
From: Leonardo Sandoval Summary of the changes: - Use OETestCase as base class instead of unittest.TestCase - Remove LogResults decorator the new framework provides logging into the core functionality. - Logger is now self.logger instead of self.log - Move comments into docstrings in several h

[OE-core] [PATCH 27/36] oeqa/core/context: Include a _pre_run method

2017-05-26 Thread Aníbal Limón
From: Leonardo Sandoval This pre runner will serve to allow Test components executes code previously of the run a suite. Signed-off-by: Leonardo Sandoval --- meta/lib/oeqa/core/context.py | 4 meta/lib/oeqa/core/exception.py | 3 +++ scripts/oe-test | 3 +++ 3 files chan

[OE-core] [PATCH 23/36] oeqa/core/case: fix typo on comment about exception name

2017-05-26 Thread Aníbal Limón
From: Leonardo Sandoval Signed-off-by: Leonardo Sandoval --- meta/lib/oeqa/core/case.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/core/case.py b/meta/lib/oeqa/core/case.py index d2dbf20..917a2aa 100644 --- a/meta/lib/oeqa/core/case.py +++ b/meta/lib/oeqa/

[OE-core] [PATCH 21/36] oeqa/runtime/case: Don't use OEQA framework internal methods

2017-05-26 Thread Aníbal Limón
The OEQA framework has internal methods for provide functionality in decorators so Test components aren't expected to override it. Use the base unittest methods for setUp and tearDown. Signed-off-by: Aníbal Limón --- meta/lib/oeqa/runtime/case.py | 8 1 file changed, 4 insertions(+), 4

[OE-core] [PATCH 25/36] oeqa/core/context: Use a default iterable modules object

2017-05-26 Thread Aníbal Limón
From: Leonardo Sandoval The OETestLoader.modules must be an iterable object, otherwise checking presence of specific modules with the 'in' operator fails with the following command/error: % oe-test core .. - core - INFO - Running bitbake -p Traceback (most recent call last): Fi

[OE-core] [PATCH 22/36] oeqa/core/README: Improve documentation

2017-05-26 Thread Aníbal Limón
From: Leonardo Sandoval Most of the text include on this text refactor came from [1]. [1] http://lists.openembedded.org/pipermail/openembedded-architecture/2016-December/000351.html Signed-off-by: Leonardo Sandoval --- meta/lib/oeqa/core/README | 81 +++---

[OE-core] [PATCH 24/36] oeqa/core/context: Raise exception when a manifest is specified but missing

2017-05-26 Thread Aníbal Limón
From: Leonardo Sandoval Signed-off-by: Leonardo Sandoval --- meta/lib/oeqa/core/context.py | 3 ++- meta/lib/oeqa/core/exception.py | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/meta/lib/oeqa/core/context.py b/meta/lib/oeqa/core/context.py index 28ae017..1ac2878 10064

[OE-core] [PATCH 19/36] oeqa/core: Add support for run tests by module, class and name

2017-05-26 Thread Aníbal Limón
This will enable only run certain module tests and filter by class and test name. Signed-off-by: Aníbal Limón --- meta/lib/oeqa/core/context.py | 6 ++-- meta/lib/oeqa/core/loader.py | 66 ++- 2 files changed, 68 insertions(+), 4 deletions(-) diff --git

[OE-core] [PATCH 20/36] classes/test{export, images}: Change modules to list

2017-05-26 Thread Aníbal Limón
With the new filters by .[class].[testname] the modules arg is expected to be a list so use split into TEST_SUITES variable. Signed-off-by: Aníbal Limón --- meta/classes/testexport.bbclass | 2 +- meta/classes/testimage.bbclass | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --gi

[OE-core] [PATCH 18/36] oeqa/core: Add list tests support in context and runner

2017-05-26 Thread Aníbal Limón
A common operation is to list tests, currently only selftest support it, this changes enables this functionality into the core framework. Signed-off-by: Aníbal Limón --- meta/lib/oeqa/core/context.py | 22 +++--- meta/lib/oeqa/core/runner.py | 98 +++

[OE-core] [PATCH 17/36] oeqa/sdk: Enable usage of OEQA thread mode

2017-05-26 Thread Aníbal Limón
oeqa/sdk/context.py - Use OETestContextThreaded. classes/testsdk.bbclass - Enable bb event thread mode to avoid corrupt the PIPE when multiple threads writes. [YOCTO #11450] Signed-off-by: Aníbal Limón --- meta/classes/testsdk.bbclass | 4 meta/lib/oeqa/sdk/context.py | 5 +++-- 2 files ch

[OE-core] [PATCH 16/36] oeqa/sdkext/cases: Move sdk_update test into devtool module

2017-05-26 Thread Aníbal Limón
With the new OEQA thread support there are problems running devtool twice at the same time because only one instance of bitbake/devtool is allowed. [YOCTO #11450] Signed-off-by: Aníbal Limón --- meta/lib/oeqa/sdkext/cases/devtool.py| 32 ++ meta/lib/oeqa/sdkext/cases

[OE-core] [PATCH 14/36] oeqa/core/decorator/oetimeout: Add support for OEQA threaded mode

2017-05-26 Thread Aníbal Limón
In python signals are only allowed to delivery into the main thread, to support the threading mode test if the runner is threaded and use threading.Timer instead. There are some considerations like SIGALRM interrupts the execution after N seconds but the Timer only starts a Thread to notice the ti

[OE-core] [PATCH 12/36] oeqa/core/threaded: Add OETestContextThreaded class

2017-05-26 Thread Aníbal Limón
This class sets the {loader,runner}Class to the threaded versions and overrides loadTests method to be able specify the process_num. [YOCTO #11450] Signed-off-by: Aníbal Limón --- meta/lib/oeqa/core/threaded.py | 14 ++ 1 file changed, 14 insertions(+) diff --git a/meta/lib/oeqa/co

[OE-core] [PATCH 15/36] oeqa/core/tests: Add tests of OEQA Threaded mode

2017-05-26 Thread Aníbal Limón
Add needed tests to validate the OEQA Threaded mode, the remaining parts are tested by the OEQA without Threaded mode. - test_loader.py: Add a test to validate rules when creating the list of test suites. - test_decorators.py: Add oetimeout test because the threaded mode uses Timer instead of sign

[OE-core] [PATCH 10/36] oeqa/core/threaded: Add OETestResultThreaded{, Internal} classes

2017-05-26 Thread Aníbal Limón
The OETestResultThreadedInternal extends OETestResult to stores results by Thread. The OETestResultThreaded is a simple class that provides the implementation of interfaces needed by outside like wasSuccesful, stop, logSummary, logDetails. [YOCTO #11450] Signed-off-by: Aníbal Limón --- meta/li

[OE-core] [PATCH 13/36] oeqa/core/decorator/depends: Add support for threading mode

2017-05-26 Thread Aníbal Limón
The _skipTestDependency needs to know if the thread mode is enabled because the _results are by thread. [YOCTO #11450] Signed-off-by: Aníbal Limón --- meta/lib/oeqa/core/decorator/depends.py | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/meta/lib/oeqa/core/decorator/

[OE-core] [PATCH 09/36] oeqa/core/runner: OETestResult add internal _tc_map_results

2017-05-26 Thread Aníbal Limón
This method is to assign results into the TestContext, create an internal one to support change implementation in Thread version. [YOCTO #11450] Signed-off-by: Aníbal Limón --- meta/lib/oeqa/core/runner.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/lib/oeqa/core/runner.py b/meta

[OE-core] [PATCH 11/36] oeqa/core/threaded: Add support of OETestRunnerThreaded

2017-05-26 Thread Aníbal Limón
The OETestRunnerThreaded overrides the run method of OETestRunner it recieves a list of suites to be executed by a ThreadPool. The new run method handles the ThreadPool creation and the OETestResultThreaded fill. [YOCTO #11450] Signed-off-by: Aníbal Limón --- meta/lib/oeqa/core/threaded.py | 7

[OE-core] [PATCH 08/36] oeqa/core/threaded: Add OEStreamLoggerThreaded class

2017-05-26 Thread Aníbal Limón
The OEStreamLoggerThreaded overrides OEStreamLogger to redirect the PyUnit output to a logger. Instead of log every line when comes the OEStreamLoggerThreaded will buffer the PyUnit output and write everything at end of every suite execution to don't have mixed suite outputs. [YOCTO #11450] Sign

[OE-core] [PATCH 04/36] oeqa/core: Don't expose OEStreamLogger in OETestContext

2017-05-26 Thread Aníbal Limón
The OEStreamLogger class is used for redirect PyUnit output to a certain logger so there is not need to expose at level of OETestContext because only OETestRunner needs to know. [YOCTO #11450] Signed-off-by: Aníbal Limón --- meta/lib/oeqa/core/context.py | 6 ++ meta/lib/oeqa/core/runner.py

[OE-core] [PATCH 01/36] testsdk.bbclass: Remove unused import of OEStreamLogger

2017-05-26 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- meta/classes/testsdk.bbclass | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass index 6a201aa..4740233 100644 --- a/meta/classes/testsdk.bbclass +++ b/meta/classes/testsdk.bbclass @@ -21,7 +21,6 @@ def tes

[OE-core] [PATCH 03/36] oeqa/sdk/context.py: Add return to OESDKTestContext.run() method

2017-05-26 Thread Aníbal Limón
The run() methods of a OETestContext's are expected to return the results. Signed-off-by: Aníbal Limón --- meta/lib/oeqa/sdk/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/sdk/context.py b/meta/lib/oeqa/sdk/context.py index 509d2b4..82e4c19 100644 --

[OE-core] [PATCH 07/36] oeqa/core/threaded: Add new module with OETestLoaderThreaded

2017-05-26 Thread Aníbal Limón
The threded module will implement Thread support into the OEQA framework. The OETestLoaderThreaded overrides discover to return a list of suites every suite will be run by a separate Thread. Some design considerations are: - All the tests of a certain module needs to be run at one thread becau

[OE-core] [PATCH 00/36] OEQA threading support and selftest migration

2017-05-26 Thread Aníbal Limón
This series is the integration of tree main changes into the OEQA module, * Implement threading support into OEQA core module * Enables OEQA threaded mode into {,e}SDK test component * Migrate current oe-selftest to use the same framework The following changes since commit 5eed6c644f715783edb0d05

[OE-core] [PATCH 06/36] oeqa/core: Move OETestContext.log{Summary, Details} into OETestResult

2017-05-26 Thread Aníbal Limón
Those methods are used to write in the log the results so it makes sense to have defined at OETestResult because is a format of the result itself. [YOCTO #11450] Signed-off-by: Aníbal Limón --- meta/classes/testimage.bbclass | 4 +- meta/classes/testsdk.bbclass | 8 ++-- meta/lib/oeqa/core/

[OE-core] [PATCH 05/36] oeqa/core/runner: OETestResult remove unneeded override of startTest

2017-05-26 Thread Aníbal Limón
I override this method before for keep track of results and forget to remove it, now isn't need. Signed-off-by: Aníbal Limón --- meta/lib/oeqa/core/runner.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/meta/lib/oeqa/core/runner.py b/meta/lib/oeqa/core/runner.py index 40fbf3b..0b04e8d 1

[OE-core] [PATCH 02/36] oeqa/sdk/context.py: Import argparse_oe at OESDKTestContext.run method

2017-05-26 Thread Aníbal Limón
This import was at level of OESDKTestContext.register_commands but OESDKTestContext.run method need it to raise exceptions. Signed-off-by: Aníbal Limón --- meta/lib/oeqa/sdk/context.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/lib/oeqa/sdk/context.py b/meta/lib

[OE-core] [PATCH v2] libsolv: don't pick up bundled db from host rpm

2017-05-26 Thread Max Krummenacher
With rpm v4 in openembedded but on a host with existing /usr/include/rpm/db.h the native build fails to compile. Signed-off-by: Max Krummenacher --- ...01-don-t-pick-up-bundled-db-from-host-rpm.patch | 43 ++ meta/recipes-extended/libsolv/libsolv_0.6.27.bb| 3 +- 2 files

[OE-core] [PATCH 3/3] kernel/meta: add virtualbox configuration fragment

2017-05-26 Thread Bruce Ashfield
As suggested by Khem, we can create a virtualbox configuration fragment that helps to run XFCE under virtualization. This can be enabled via KERNEL_FEATURES for targest that require it, and may be enabled by default in the future. Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linu

[OE-core] [PATCH 1/3] linux-yocto/meta: bluetooth: Adds BT_BREDR and BT_LE, which are needed as dependencies

2017-05-26 Thread Bruce Ashfield
Updating the kernel meta-data to pick up a bluetooth configuration change: BT_LE is nedded by BT_6LOWPAN BT_BREDR is needed by: BT_RFCOMM, BT_RFCOMM_TTY (secondary), BT_BNEP, BT_BNEP_MC_FILTER (secondary), BNEP_PROTO_FILTER (secondary), BT_CMTP, BT_HIDP [YOCTO #10425] Signed-off-by: A

[OE-core] [PATCH 2/3] linux-yocto/meta: smp: Add config X86_BIGSMP since its needed when NR_CPUS > 8

2017-05-26 Thread Bruce Ashfield
Updating the kernel meta data with the following configuration change: When we set NR_CPUS to something > than 8, we also need to set X86_BIGSMP according to Kconfig: config X86_BIGSMP bool "Support for big SMP systems with more than 8 CPUs" otherwise NR_CPU will end up being r

[OE-core] [PATCH 0/3] kernel-yocto: configuration changes/fragments

2017-05-26 Thread Bruce Ashfield
Hi all, Just a small pull request to tweak some configuration items in the kernel meta data. The first two are configuration warning fixes, and the virtualbox fragment are the options that Khem had previous sent to allow XFCE to run under virtualization. I haven't enabled the virtualbox fragment

Re: [OE-core] [morty] [PATCH] cryptodev-linux: update SRC_URI

2017-05-26 Thread Denys Dmytriyenko
Richard, Ross, Armin, et al, Can we please expedite this change to morty and other stable releases? Thanks! -- Denys On Fri, May 26, 2017 at 03:32:46PM +0800, Chang Rebecca Swee Fun wrote: > Gna! project announced that the download site from gna.org HTTP server > will soon be closing down. We

Re: [OE-core] [morty][PATCH 1/1] openssl-native: Compile with -fPIC

2017-05-26 Thread Andre McCurdy
On Fri, May 26, 2017 at 12:03 AM, Mirza Krak wrote: > From: Khem Raj > > Fixes > | /usr/bin/ld: libcrypto.a(sha1-x86_64.o): relocation R_X86_64_PC32 against > undefined symbol `OPENSSL_ia32cap_P' can not be used when making a shared > object; recompile with -fPIC > | /usr/bin/ld: final link fai

Re: [OE-core] [meta-oe][PATCH v4] openssh: Atomically generate host keys

2017-05-26 Thread Andre McCurdy
On Thu, May 25, 2017 at 6:52 PM, Joshua Watt wrote: > Generating the host keys atomically prevents power interruptions during > the first boot from leaving the key files incomplete, which often > prevents users from being able to ssh into the device. > --- > meta/recipes-connectivity/openssh/ope

Re: [OE-core] ✗ patchtest: failure for qemu: Add nios2 target

2017-05-26 Thread Marek Vasut
On 05/25/2017 11:53 AM, Burton, Ross wrote: > > On 24 May 2017 at 22:02, Patchwork > wrote: > > * Issue Series sent to the wrong mailing list or some > patches from the series correspond to different mailing lists > [test_targe

Re: [OE-core] [PATCH] kconfig-frontends: fix another build race

2017-05-26 Thread Burton, Ross
On 26 May 2017 at 17:25, Khem Raj wrote: > this package should probably be retired from oe-core. I added it as > part of eglibc > kconfig support which we have dropped few releases back. > If you added it, and nobody else really wants it, feel free to submit a removal patch. Ross -- __

Re: [OE-core] [PATCH] kconfig-frontends: fix another build race

2017-05-26 Thread Khem Raj
On Fri, May 26, 2017 at 9:13 AM, Ross Burton wrote: > It is possible that frontends/kconfig is written to by sed before frontends/ > exists, so add a mkdir to ensure the directory always exits. > > [ YOCTO #11574 ] > this package should probably be retired from oe-core. I added it as part of egli

[OE-core] [PATCH 2/2] glibc: Configure with extra hardening options

2017-05-26 Thread Khem Raj
Signed-off-by: Khem Raj --- meta/recipes-core/glibc/glibc_2.25.bb | 4 1 file changed, 4 insertions(+) diff --git a/meta/recipes-core/glibc/glibc_2.25.bb b/meta/recipes-core/glibc/glibc_2.25.bb index ab6fbbea2a..83a1249b8c 100644 --- a/meta/recipes-core/glibc/glibc_2.25.bb +++ b/meta/recip

[OE-core] [PATCH 1/2] nfs-utils: Fix build error due to missing stdint.h> include

2017-05-26 Thread Khem Raj
Signed-off-by: Khem Raj --- ...nclude-stdint.h-for-UINT16_MAX-definition.patch | 27 ++ .../nfs-utils/nfs-utils_2.1.1.bb | 1 + 2 files changed, 28 insertions(+) create mode 100644 meta/recipes-connectivity/nfs-utils/nfs-utils/0001-include-stdint.h-for-UIN

[OE-core] [PATCH] kconfig-frontends: fix another build race

2017-05-26 Thread Ross Burton
It is possible that frontends/kconfig is written to by sed before frontends/ exists, so add a mkdir to ensure the directory always exits. [ YOCTO #11574 ] Signed-off-by: Ross Burton --- meta/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch | 4 1 file changed, 4 insertions(+)

Re: [OE-core] [PATCH] elfutils: Upgrade 0.168 to 0.169

2017-05-26 Thread Burton, Ross
On 26 May 2017 at 06:06, Fan Xin wrote: > 1) Upgrade elfutils from 0.168 to 0.169 > 2) Delete unnecessary patches which has been merged into 0.169 > 3) Rebase the patch files for 0.169 > ERROR: elfutils-0.169-r0 do_fetch: Fetcher failure for URL: 'file://aarch64_uio.patch'. Unable to fetch URL f

Re: [OE-core] [meta-perl][PATCH] meta-perl: Make glibc-gconv deps apply for glibc based systems alone

2017-05-26 Thread Khem Raj
On Friday, May 26, 2017, Burton, Ross wrote: > > On 25 May 2017 at 15:47, Khem Raj > wrote: > >> musl does not provide separate gconv packages >> > > Wrong list :) > Ah > > Ross > -- ___ Openembedded-core mailing list Openembedded-core@lists.openem

[OE-core] ✗ patchtest: failure for image_types_wic: fix scheduling of prepare_wic_build

2017-05-26 Thread Patchwork
== Series Details == Series: image_types_wic: fix scheduling of prepare_wic_build Revision: 1 URL : https://patchwork.openembedded.org/series/6934/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have

[OE-core] [PATCH 1/1] image_types_wic: schedule prepare_wic_build correctly

2017-05-26 Thread Ed Bartosh
When EFI is enabled we need to ensure that kernel and bootloader artifacts are fully deployed before running prepare_wic_build. This is done by scheduling this task after do_bootimg and by adding dependencty to virtual/kernel:do_deploy task. Scheduled prepare_wic_build only if wic build is enabled

[OE-core] [PATCH 0/1] image_types_wic: fix scheduling of prepare_wic_build

2017-05-26 Thread Ed Bartosh
Hi, This patch fixes wic build on machines that don't support EFI. It also fixes build on intel-meta layer for intel-corei7-64 machine that was broken by previous patches due to the wrong assumption that EFI_PROVIDER recipe must be present if layer provides EFI functionality. This patch obsolete

Re: [OE-core] [PATCH 1/4] masterimage.py: fix issue with calling reboot on masterimage/DUT

2017-05-26 Thread Leonardo Sandoval
On Fri, 2017-05-26 at 11:01 +0200, Erik Botö wrote: > I guess an introduction should have been added to this patchset, so here > it comes a bit late: > no problem, in that case, you may need to tag the commit(s) with the bugzilla ID > These patches are what I needed to do in order to get autom

Re: [OE-core] [PATCH] lsbinitscripts: 9.68 -> 9.72

2017-05-26 Thread Leonardo Sandoval
On Fri, 2017-05-26 at 15:28 +0800, Huang Qiyu wrote: > 1) Upgrade lsbinitscripts from 9.68 to 9.72. > 2) Modify one patch "functions.patch", since the data has been changed. the only change I see in the .patch file is the extra -e, is that what you mean that the data has changed? Leo -- __

[OE-core] [PATCH] gstreamer1.0-omx: delete broken m4 files

2017-05-26 Thread Ross Burton
These m4 files need to be deleted so that the versions in the sysroot that we've patched are used. Specifically, building documentation fails as the gtk-doc checks fail. Signed-off-by: Ross Burton --- meta/recipes-multimedia/gstreamer/gstreamer1.0-omx.inc | 9 - 1 file changed, 8 insert

Re: [OE-core] [meta-oe][PATCH v5] openssh: Atomically generate host keys

2017-05-26 Thread Joshua Watt
On Fri, May 26, 2017 at 8:33 AM, Leonardo Sandoval wrote: > Just a minor comment: there is no need to include any prefix besides > [PATCH vN]. Also, patches either go to oe-core or meta-oe, so it makes > no sense to send the patch to the oe-core and using the [meta-oe] as > prefix. Ya, sorry. I w

[OE-core] [PATCH] freetype: 2.7.1 -> 2.8

2017-05-26 Thread Andrej Valek
Signed-off-by: Andrej Valek --- meta/recipes-graphics/freetype/{freetype_2.7.1.bb => freetype_2.8.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/freetype/{freetype_2.7.1.bb => freetype_2.8.bb} (93%) diff --git a/meta/recipes-graphics/freetype/freetyp

Re: [OE-core] [meta-oe][PATCH v5] openssh: Atomically generate host keys

2017-05-26 Thread Leonardo Sandoval
Just a minor comment: there is no need to include any prefix besides [PATCH vN]. Also, patches either go to oe-core or meta-oe, so it makes no sense to send the patch to the oe-core and using the [meta-oe] as prefix. Leo On Thu, 2017-05-25 at 20:54 -0500, Joshua Watt wrote: > Generating the ho

[OE-core] [PATCH] runqemu: output qemu-system errors

2017-05-26 Thread Ed Bartosh
Included error output from qemu-system into the runqemu error message. Made error output more visible by printing new line before it. [YOCTO #11542] Signed-off-by: Ed Bartosh --- scripts/runqemu | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/runqemu b/scripts

Re: [OE-core] [meta-perl][PATCH] meta-perl: Make glibc-gconv deps apply for glibc based systems alone

2017-05-26 Thread Burton, Ross
On 25 May 2017 at 15:47, Khem Raj wrote: > musl does not provide separate gconv packages > Wrong list :) Ross -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-c

Re: [OE-core] [pyro][PATCH 0/6] Add some gstreamer1.0-plugins-bad patches for pyro

2017-05-26 Thread Burton, Ross
On 26 May 2017 at 02:56, Carol Zhu wrote: > These are backports from 1.11 or earlier. > > And I was told that Maxin is currently working on upgrading the GStreamer > stack to 1.12. > > So I am trying to upstream them for pyro as these probably do not make > sense for master. > > Ok, thanks. Ross

[OE-core] [PATCH] ncurses: 6.0+20161126 -> 6.0+20170408

2017-05-26 Thread Huang Qiyu
1) Upgrade ncurses from 6.0+20161126 to 6.0+20170408. 2) Delete patch "fix-cflags-mangle.patch",since it is integrated upstream. Signed-off-by: Huang Qiyu --- .../recipes-core/ncurses/files/fix-cflags-mangle.patch | 18 -- ...ncurses_6.0+20161126.bb => ncurses_6.0+20170408.bb} |

Re: [OE-core] [PATCH 1/4] masterimage.py: fix issue with calling reboot on masterimage/DUT

2017-05-26 Thread Erik Botö
I guess an introduction should have been added to this patchset, so here it comes a bit late: These patches are what I needed to do in order to get automated runtime tests on target using the systemd-boot target working. There is an open bug in the bugzilla for this as well: https://bugzilla.

[OE-core] [krogoth] [PATCH] cryptodev-linux: update SRC_URI

2017-05-26 Thread Chang Rebecca Swee Fun
Gna! project announced that the download site from gna.org HTTP server will soon be closing down. We have verified that the site is no longer accessible without network proxy cache. We need to update SRC_URI to point to new alternative (nwl.cc HTTP server) in order to avoid fetcher issues in future

[OE-core] [morty] [PATCH] cryptodev-linux: update SRC_URI

2017-05-26 Thread Chang Rebecca Swee Fun
Gna! project announced that the download site from gna.org HTTP server will soon be closing down. We have verified that the site is no longer accessible without network proxy cache. We need to update SRC_URI to point to new alternative (nwl.cc HTTP server) in order to avoid fetcher issues in future

[OE-core] [PATCH] lsbinitscripts: 9.68 -> 9.72

2017-05-26 Thread Huang Qiyu
1) Upgrade lsbinitscripts from 9.68 to 9.72. 2) Modify one patch "functions.patch", since the data has been changed. Signed-off-by: Huang Qiyu --- .../lsb/lsbinitscripts/functions.patch | 40 -- ...binitscripts_9.68.bb => lsbinitscripts_9.72.bb} | 6 ++-- 2 files

[OE-core] [pyro] [PATCH] cryptodev-linux: update SRC_URI

2017-05-26 Thread Chang Rebecca Swee Fun
Gna! project announced that the download site from gna.org HTTP server will soon be closing down. We have verified that the site is no longer accessible without network proxy cache. We need to update SRC_URI to point to new alternative (nwl.cc HTTP server) in order to avoid fetcher issues in future

[OE-core] [morty][PATCH 1/1] openssl-native: Compile with -fPIC

2017-05-26 Thread Mirza Krak
From: Khem Raj Fixes | /usr/bin/ld: libcrypto.a(sha1-x86_64.o): relocation R_X86_64_PC32 against undefined symbol `OPENSSL_ia32cap_P' can not be used when making a shared object; recompile with -fPIC | /usr/bin/ld: final link failed: Bad value Signed-off-by: Khem Raj (cherry picked from commi

[OE-core] [master] [PATCH] cryptodev-linux: update SRC_URI

2017-05-26 Thread Chang Rebecca Swee Fun
Gna! project announced that the download site from gna.org HTTP server will soon be closing down. We have verified that the site is no longer accessible without network proxy cache. We need to update SRC_URI to point to new alternative (nwl.cc HTTP server) in order to avoid fetcher issues in future