Re: [OE-core] [PATCH 0/4] Move SCons to Python 3

2019-06-08 Thread Burton, Ross
Hurrah, last time I looked at this the Py3 support wasn't quite ready yet. Ross On Sat, 8 Jun 2019 at 00:49, Tim Orling wrote: > > python-scons and python-scons-native are perhaps the last python2 only > recipes in oe-core. With Python 2 going EOL in or before 2020, it's time > to switch

Re: [OE-core] [PATCH 3/3] gtk+3: update 3.24.5 -> 3.24.8

2019-06-08 Thread Richard Purdie
On Fri, 2019-06-07 at 14:19 +0200, Alexander Kanavin wrote: > Rebase 0003-Add-disable-opengl-configure-option.patch > > Signed-off-by: Alexander Kanavin > --- > ...-Add-disable-opengl-configure-option.patch | 41 ++--- > -- > .../gtk+/{gtk+3_3.24.5.bb => gtk+3_3.24.8.bb} | 4 +- >

Re: [OE-core] [meta-oe][PATCH v3 3/4] runqemu: support non-bootable wic images

2019-06-08 Thread Richard Purdie
On Sat, 2019-06-08 at 09:59 +0200, Adrian Freihofer wrote: > 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. > > This

[OE-core] [PATCH 0/1] Adding OE_EXTRA_IMPORTS

2019-06-08 Thread Chris Laplante via Openembedded-core
As explained in bitbake-devel, the motivation for adding this variable is so that layers have a way of using custom progress handlers. It will also be useful for any layer that wishes to make additional Python modules usable in Python functions. Chris Laplante (1): base.bbclass: Add

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

2019-06-08 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. This patch changes the runqemu script to support this. If QB_MACHINE

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

2019-06-08 Thread Adrian Freihofer
Please ignore v2. This version 3 only clears up the mess in version 2. Resolves [Yocto 13336] Compared to v1, no new wic-nb image type is added (this caused problems with bitbake -c testimage). runqemu now evaluates the QB_MACHINE setting to determine whether a wic image should be booted as a

[OE-core] [meta-oe][PATCH v3 1/4] qemurunner: fix undefined variable

2019-06-08 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 v3 4/4] runqemu: add wic-fs and wic-wm paramters

2019-06-08 Thread Adrian Freihofer
This is an optional follow up for the previous commit. It allows to define if wic images are handled as vm or as fs type images by command line argument. Signed-off-by: Adrian Freihofer --- scripts/runqemu | 6 ++ 1 file changed, 6 insertions(+) diff --git a/scripts/runqemu

[OE-core] [meta-oe][PATCH v3 2/4] testimage: consider QB_DEFAULT_FSTYPE

2019-06-08 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] ✗ patchtest: failure for runqemu: support non-bootable wic images

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

[OE-core] [PATCH v2] recipetool: add python3 support

2019-06-08 Thread Maciej Pijanowski
Add support for generating python3 recipes using the recipetool / devtool. Drop python2 support at the same time. Tested with: oe-selftest -r recipetool.RecipetoolTest Fixes Bug 13264 Signed-off-by: Maciej Pijanowski --- meta/lib/oeqa/selftest/cases/recipetool.py| 42 ++-

[OE-core] [warrior][PATCH] grub-efi-cfg, systemd-boot-cfg: use MACHINE_ARCH

2019-06-08 Thread Martin Jansa
* both use KERNEL_IMAGETYPE variable which is MACHINE specific * fixes: === Comparing signatures for task do_configure.sigdata between hammerhead and mako === ERROR: grub-bootconf different signature for task do_configure.sigdata between hammerhead and mako basehash changed from

Re: [OE-core] [PATCH] devtool: build: add deploy to the tasks run for devtool build

2019-06-08 Thread Richard Purdie
On Fri, 2019-06-07 at 15:17 -0700, Jaewon Lee wrote: > Right now `devtool build` runs populate_sysroot and packagedata > tasks. > Adding deploy to this list so that the newly built artifacts are > available in the deploy directory. > > Signed-off-by: Jaewon Lee > > [YOCTO #13382] > >

Re: [OE-core] [PATCH] devtool: build: add deploy to the tasks run for devtool build

2019-06-08 Thread Jaewon Lee
Sorry about that Richard Will be sure to test with that Thanks, Jaewon > On Jun 8, 2019, at 5:15 AM, Richard Purdie > wrote: > >> On Fri, 2019-06-07 at 15:17 -0700, Jaewon Lee wrote: >> Right now `devtool build` runs populate_sysroot and packagedata >> tasks. >> Adding deploy to this list