Re: [OE-core] [PATCH 3/4] serf: switch to python3-scons-native

2019-06-09 Thread Tim Orling
On Sun, Jun 9, 2019 at 10:10 PM Mittal, Anuj wrote: > This is causing on CentOS 7: > > | DEBUG: Executing shell function do_compile > | scons: *** SCons version 3.0.5 does not run under Python version > 3.4.8. > | Python 2.7 or >= 3.5 is required. > > Looks like it's using host python which is

Re: [OE-core] [PATCH 3/4] serf: switch to python3-scons-native

2019-06-09 Thread Mittal, Anuj
This is causing on CentOS 7: | DEBUG: Executing shell function do_compile | scons: *** SCons version 3.0.5 does not run under Python version 3.4.8. | Python 2.7 or >= 3.5 is required. Looks like it's using host python which is at 3.4.8 in this case. Thanks, Anuj On Fri, 2019-06-07 at 16:47

Re: [OE-core] [Warrior-next 24/27] openssl: Upgrade 1.1.1b -> 1.1.1c

2019-06-09 Thread Adrian Bunk
On Sun, Jun 09, 2019 at 06:39:58PM +0100, Alex Kiernan wrote: > On Sun, Jun 9, 2019 at 4:50 PM Armin Kuster wrote: > > > > From: Adrian Bunk > > > > Backported patch removed. > > > > Signed-off-by: Adrian Bunk > > Signed-off-by: Richard Purdie > > Signed-off-by: Armin Kuster > > --- > > I've

Re: [OE-core] [PATCH v2] json-c: Disable icecc to avoid implicit-fallthrough warning as error

2019-06-09 Thread Burton, Ross
FWIW, this just landed in json-c master: https://github.com/json-c/json-c/commit/07ea04e65193c3e5c902c5b79421d5fa48ff67c7 "build: add option --disable-werror to configure" Ross On Fri, 7 Jun 2019 at 12:20, Burton, Ross wrote: > > FWIW I still believe that just patching out -Werror is the

Re: [OE-core] [Warrior-next 24/27] openssl: Upgrade 1.1.1b -> 1.1.1c

2019-06-09 Thread Alex Kiernan
On Sun, Jun 9, 2019 at 4:50 PM Armin Kuster wrote: > > From: Adrian Bunk > > Backported patch removed. > > Signed-off-by: Adrian Bunk > Signed-off-by: Richard Purdie > Signed-off-by: Armin Kuster > --- I've just created: https://github.com/openssl/openssl/issues/9119 Which appears to be a

[OE-core] [Warrior-next 27/27] qemurunner: fix undefined variable

2019-06-09 Thread Armin Kuster
From: Adrian Freihofer While hacking on this I got an Exception. It's better to define variables also in python. Signe:-off-by: Adrian Freihofer Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- meta/lib/oeqa/utils/qemurunner.py | 1 + 1 file changed, 1 insertion(+) diff --git

[OE-core] [Warrior-next 26/27] logparser: Add LTP compliance section

2019-06-09 Thread Armin Kuster
Signed-off-by: Armin Kuster Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- meta/lib/oeqa/utils/logparser.py | 37 + 1 file changed, 37 insertions(+) diff --git a/meta/lib/oeqa/utils/logparser.py b/meta/lib/oeqa/utils/logparser.py index

[OE-core] [Warrior-next 25/27] logparser: Add decoding ltp logs

2019-06-09 Thread Armin Kuster
Signed-off-by: Armin Kuster Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- meta/lib/oeqa/utils/logparser.py | 25 + 1 file changed, 25 insertions(+) diff --git a/meta/lib/oeqa/utils/logparser.py b/meta/lib/oeqa/utils/logparser.py index 18285fb..abff8c7

[OE-core] [Warrior-next 24/27] openssl: Upgrade 1.1.1b -> 1.1.1c

2019-06-09 Thread Armin Kuster
From: Adrian Bunk Backported patch removed. Signed-off-by: Adrian Bunk Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- .../openssl/openssl/CVE-2019-1543.patch| 69 -- .../openssl/openssl/afalg.patch| 6 +-

[OE-core] [Warrior-next 21/27] resulttool: Remove prints if no tests occur

2019-06-09 Thread Armin Kuster
From: Jon Mason Printing the lack of a test is not necessary (per feedback). Remove this from the template to quieten it. Signed-off-by: Jon Mason Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- scripts/lib/resulttool/template/test_report_full_text.txt | 14 +++--- 1

[OE-core] [Warrior-next 23/27] oeqa/utils/qemurunner: Set both the threadport with tcpserial parameter

2019-06-09 Thread Armin Kuster
From: Kevin Hao After the commit ad522ea6a64e ("runqemu: Let qemuparams override default settings"), the order of the two "-serial" parameters when running the qemu have been switched. The effect of this is that the logging thread will use ttyS1 (of course can't capture the kernel boot message

[OE-core] [Warrior-next 22/27] runqemu: Add the support to pass multi ports to tcpserial parameter

2019-06-09 Thread Armin Kuster
From: Kevin Hao In some cases(such as the oeqa's qemurunner), we need to setup multi serial devices via the '-serial 127.0.0.1:xx" and the order of them is significant. The mixing use of "tcpserial" and "-serial 127.0.0.1:xx" cause ambiguous issues and we can't fix it by only adjusting the order

[OE-core] [Warrior-next 20/27] resulttool/manualexecution: Enable creation of test case configuration

2019-06-09 Thread Armin Kuster
From: sangeeta jain Allow the creation of test case configuration file based on user inputs. Where this testcase configuration file will be used by the the manual execution to run selected test cases for a module rather than compulsory run all test cases in manual json file. Signed-off-by:

[OE-core] [Warrior-next 19/27] resulttool: modify to be multi-machine

2019-06-09 Thread Armin Kuster
From: Jon Mason Currently, the code will sum all of the different machine results into a single report of the tests results. This can lead to confusion as to which machine may be experiencing issues. Modify the code to store the results in a per machine basis and report them accordingly.

[OE-core] [Warrior-next 17/27] resulttool: add ltp test support

2019-06-09 Thread Armin Kuster
Signed-off-by: Armin Kuster Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- scripts/lib/resulttool/report.py | 43 +- .../resulttool/template/test_report_full_text.txt | 17 + 2 files changed, 59 insertions(+), 1 deletion(-) diff

[OE-core] [Warrior-next 18/27] resulttool: add LTP compliance section

2019-06-09 Thread Armin Kuster
Signed-off-by: Armin Kuster Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- scripts/lib/resulttool/report.py | 42 +- .../resulttool/template/test_report_full_text.txt | 17 + 2 files changed, 58 insertions(+), 1 deletion(-) diff

[OE-core] [Warrior-next 15/27] ltp_compliance: add new runtime

2019-06-09 Thread Armin Kuster
test runtimes in sec. AIO: 14 MEM: 94 MSG: 89 SEM: 30 SIG: 194 THR: 399 TMR: 867 TPS: 23 Signed-off-by: Armin Kuster Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- meta/lib/oeqa/runtime/cases/ltp_compliance.py | 104 ++ 1 file changed, 104 insertions(+)

[OE-core] [Warrior-next 14/27] ltp: add runtime test

2019-06-09 Thread Armin Kuster
This adds the framework for running ltp tests. Here are some times: math: 61 syscalls: 3957 dio: 18472 io: 29 mm: 551 ipc: 48 sched: 165 nptl: 46 pty: 37 containers: 52 controllers: 9625 filecaps: 27 cap_bounds: 27 fcntl-locktests: 29 connectors: 27 timers: 37 commands: 165 net.ipv6_lib: 30

[OE-core] [Warrior-next 13/27] linux-yocto: ptest: Add SCSI debug configuration for util-linux

2019-06-09 Thread Armin Kuster
From: Bruce Ashfield Bumping the SRCREVs to pickup the following configuration tweak for ptest usage: Author: Mariano López Date: Sat Jun 1 17:30:46 2019 -0500 Add SCSI debug configuration for util-linux ptest The ptests from util-linux require the scsi debug module to be

[OE-core] [Warrior-next 12/27] lib/oe/reciputils.py: support character `+' in git pv

2019-06-09 Thread Armin Kuster
From: Hongxu Jia While pv contains char `+' (such as ncurses 6.1+20181013), it was incorrectly converted to `6.1' In this commit: - Convert [^\+]* to .*? Support pv to contain char `+' and not greedy match (Such as ncurses 6.1+20181013) - Add [^\+] to sfx match Support sfx contains extra

[OE-core] [Warrior-next 11/27] linux-yocto/5.0: fix systemtap on arm

2019-06-09 Thread Armin Kuster
From: Bruce Ashfield The following commit is part of 5.0.17+: ARM: fix function graph tracer and unwinder dependencies [ Upstream commit 503621628b32782a07b2318e4112bd4372aa3401 ] Naresh Kamboju recently reported that the function-graph tracer crashes on ARM. The

[OE-core] [Warrior-next 09/27] linux-yocto/5.0: update to v5.0.19

2019-06-09 Thread Armin Kuster
From: Bruce Ashfield Integrating the korg -stable updates that comprise the following commits: 3f7c1cab1a61 Linux 5.0.19 64d314bd8cc8 fbdev: sm712fb: fix memory frequency by avoiding a switch/case fallthrough e5c6d75b0f03 bpf, lru: avoid messing with eviction heuristics upon syscall

[OE-core] [Warrior-next 10/27] linux-yocto-rt/5.0: update to -rt11

2019-06-09 Thread Armin Kuster
From: Bruce Ashfield Updating the 5.0 -rt to -rt11, which comprises the following commits: 9c1e84c9b81b v5.0.19-rt11 c4258b70deda workqueue: rework 2a0f03c9daff softirq: rework cb38c9a00313 Revert "drm/i915/fence: Do not use TIMER_IRQSAFE" 0ffa8402bf10 clocksource: TCLIB: Add

[OE-core] [Warrior-next 08/27] linux-yocto-rt/5.0: update to -rt9

2019-06-09 Thread Armin Kuster
From: Bruce Ashfield Updating linux-yocto-rt to -rt9, which comprises the following commits: cc66f1b95af7 (HEAD -> v5.0/standard/preempt-rt/base) v5.0.14-rt9 96957f0ca4a4 sched/completion: Fix a lockup in wait_for_completion() 7108dfc6c002 iommu/dma-iommu: Remove

[OE-core] [Warrior-next 07/27] linux-yocto/5.0: update to v5.0.17

2019-06-09 Thread Armin Kuster
From: Bruce Ashfield Integrating the korg -stable commits that comprise the following changes: d59f5a01fa43 Linux 5.0.17 ba686f90778b f2fs: Fix use of number of devices 78b8c59eee72 PCI: hv: Add pci_destroy_slot() in pci_devices_present_work(), if necessary f20f463b32bc PCI: hv:

[OE-core] [Warrior-next 06/27] kernel: package modules.builtin.modinfo

2019-06-09 Thread Armin Kuster
From: Bruce Ashfield As of commit 898490c010b [moduleparam: Save information about built-in modules in separate file] (kernels v5.2-rc1+), modules.builtin.modinfo is generated as part of the kernel build process. We package it along with the other module artifacts, so it can be used by

[OE-core] [Warrior-next 05/27] linux-yocto/4.19: update to v4.19.44

2019-06-09 Thread Armin Kuster
From: Bruce Ashfield Integrating the korg -stable updates that comprise the following commits: dafc674bbcb1 Linux 4.19.44 9fa23ea14e8f PCI: hv: Add pci_destroy_slot() in pci_devices_present_work(), if necessary 76888d135c4e PCI: hv: Add hv_pci_remove_slots() when we unload the driver

[OE-core] [Warrior-next 04/27] linux-yocto/4.19: update to v4.19.40

2019-06-09 Thread Armin Kuster
From: Bruce Ashfield Updating to the latest -stable release which comprises the following changes: 1656b1457209 Linux 4.19.40 cc313d405b0c ath10k: Drop WARN_ON()s that always trigger during system resume d0a5000f10e7 ALSA: line6: use dynamic buffers 68d49ff47789 KVM: nVMX: Fix size

[OE-core] [Warrior-next 03/27] linux-yocto/5.0: update to v5.0.13

2019-06-09 Thread Armin Kuster
From: Bruce Ashfield Integrating the korg stable commits that comprise the following changes: e5b9547b1aa3 Linux 5.0.13 d467f3acebc5 ath10k: Drop WARN_ON()s that always trigger during system resume 3c13f6cd254d iwlwifi: mvm: properly check debugfs dentry before using it c391e6198768

[OE-core] [Warrior-next 02/27] uninative: Switch from bz2 to xz

2019-06-09 Thread Armin Kuster
From: Richard Purdie (From OE-Core rev: 29fc9210b973be68de474e75068e4c72371afe5a) Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- meta/classes/uninative.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/classes/uninative.bbclass

[OE-core] [Warrior-next 01/27] yocto-uninative: Update to 2.5 release

2019-06-09 Thread Armin Kuster
From: Richard Purdie This includes libstdc++ changes from gcc 9.X. It also switches uninative from bz2 to xz compression. Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- meta/conf/distro/include/yocto-uninative.inc | 8 1 file changed, 4 insertions(+), 4 deletions(-)

[OE-core] [Warrior-next 00/27] Warrior patch review

2019-06-09 Thread Armin Kuster
Warrior next patch series Comments by Wed The following changes since commit a2915db76d6a2007b22b20f945498c84e7fa8132: dbus-test: Improve ptest dependencies dependencies (2019-06-09 11:00:46 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib

Re: [OE-core] [warrior][PATCH] dbus-test: Improve ptest dependencies dependencies

2019-06-09 Thread akuster808
On 6/9/19 12:56 AM, Martin Jansa wrote: > From: Richard Purdie > > The dbus-test package is empty, move its dependencies to the ${PN}-ptest > package. Also ensure that it doesn't depend on the empty ${PN} package > which is about to start causing image failures in the following commit. > In

[OE-core] ✗ patchtest: failure for runqemu: support non-bootable wic images

2019-06-09 Thread Patchwork
== Series Details == Series: runqemu: support non-bootable wic images Revision: 1 URL : https://patchwork.openembedded.org/series/18057/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been

[OE-core] [meta-oe][PATCH v4 3/3] runqemu: QB_FSINFO to support fstype wic images

2019-06-09 Thread Adrian Freihofer
wic images are handled as vmtype images. Starting qemu with "-kernel" parameter and an image of type wic is not supported. Especially for "-machine virt" the combination of wic with -kernel parameter would be beneficial. The new parameter QB_FSINFO allows to pass image type specific flags to

[OE-core] [meta-oe][PATCH v4 2/3] testimage: consider QB_DEFAULT_FSTYPE

2019-06-09 Thread Adrian Freihofer
testimage.bbclass starts qemu with the first image type found in the IMAGE_FSTYPES list. It's weird: this ['wic', 'tar'] works but this ['tar'. 'wic'] does not. If QB_DEFAULT_FSTYPE is defined, this fstype is booted. Signed-off-by: Adrian Freihofer --- meta/classes/testimage.bbclass | 6 +-

[OE-core] [meta-oe][PATCH v4 1/3] qemurunner: fix undefined variable

2019-06-09 Thread Adrian Freihofer
While hacking on this I got an Exception. It's better to define variables also in python. Signe:-off-by: Adrian Freihofer --- meta/lib/oeqa/utils/qemurunner.py | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index

[OE-core] [meta-oe][PATCH v4 0/3] runqemu: support non-bootable wic images

2019-06-09 Thread Adrian Freihofer
Compared to V3 this is a new implementation, as suggested by Richard. Thanks for the hint, it makes perfect sense. Adrian Freihofer (3): qemurunner: fix undefined variable testimage: consider QB_DEFAULT_FSTYPE runqemu: QB_FSINFO to support fstype wic images meta/classes/testimage.bbclass

[OE-core] [warrior][PATCH] dbus-test: Improve ptest dependencies dependencies

2019-06-09 Thread Martin Jansa
From: Richard Purdie The dbus-test package is empty, move its dependencies to the ${PN}-ptest package. Also ensure that it doesn't depend on the empty ${PN} package which is about to start causing image failures in the following commit. In this case the correct dependency is dbus itself.

Re: [OE-core] [oe-commits] [openembedded-core] 21/35: ptest: Add RDEPENDS frpm PN-ptest to PN package

2019-06-09 Thread Martin Jansa
On Fri, Jun 07, 2019 at 12:58:30PM +, g...@git.openembedded.org wrote: > This is an automated email from the git hooks/post-receive script. > > rpurdie pushed a commit to branch warrior > in repository openembedded-core. > > commit 1ad805984c8c9c9a505b6b0e8ad870b8233b13b2 > Author: Richard