[OE-core] [meta-oe][PATCH v3] openssl: fix multilib file install conflicts

2019-01-28 Thread Xulin Sun
To avoid issue like below if run "bitbake lib32-core-image-minimal" with series userspace packages(LAMP,krb5...) added. Add multilib_script support for openssl's c_rehash which is a perl script. Error: Transaction check error: file /usr/bin/c_rehash conflicts between attempted installs of lib

[OE-core] [PATCH 4/4] keymaps: tighten package write dependency

2019-01-28 Thread Jonas Bonn
The dependency on systemd-systemctl-native is only needed if _both_ systemd and sysvinit are in play. Signed-off-by: Jonas Bonn --- meta/recipes-bsp/keymaps/keymaps_1.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-bsp/keymaps/keymaps_1.0.bb b/meta/recipes-

[OE-core] [PATCH 1/4] glibc: systemd and sysvinit are not mutually exclusive

2019-01-28 Thread Jonas Bonn
Signed-off-by: Jonas Bonn --- meta/recipes-core/glibc/glibc-package.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-core/glibc/glibc-package.inc b/meta/recipes-core/glibc/glibc-package.inc index a98ae1a29c..329732f48c 100644 --- a/meta/recipes-core/glibc/g

[OE-core] [PATCH 2/4] dbus: volatiles are only needed by sysvinit configuration

2019-01-28 Thread Jonas Bonn
Signed-off-by: Jonas Bonn --- meta/recipes-core/dbus/dbus_1.12.10.bb | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/meta/recipes-core/dbus/dbus_1.12.10.bb b/meta/recipes-core/dbus/dbus_1.12.10.bb index d71f7f7042..d3301278b0 100644 --- a/meta/recipes-core/dbus/dbus_1.

[OE-core] [PATCH 3/4] base-files: filesystems serves no real purpose

2019-01-28 Thread Jonas Bonn
mount can generally figure out the filesystem type from the superblock; otherwise, /proc/filesystems is a more correct fallback than /etc/filesystems and presumably always available. Signed-off-by: Jonas Bonn --- meta/recipes-core/base-files/base-files/filesystems | 8 meta/recipes-core

[OE-core] [PATCH] gcc-cross-canadian: Do not create symlink to real-ld

2019-01-28 Thread Samuli Piippo
real-ld is always used if that is found, which means you cannot switch between bfd and gold linkers using -fuse-ld=gold. Signed-off-by: Samuli Piippo --- meta/recipes-devtools/gcc/gcc-cross-canadian.inc | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-devtools/gcc/gcc-cross-cana

Re: [OE-core] [PATCH V3] arm-tunes: Remove -march option if mcpu is already added

2019-01-28 Thread Mark Hatle
I reviewed this patch set. It looks good to me. Moving to -mcpu makes sense, as well as manually specifying the override feature info when necessary. --Mark On 1/28/19 4:56 AM, Khem Raj wrote: > tune files which inherit the arch definitions already define appropriate > -mcpu option, which is eq

Re: [OE-core] [PATCH v2] device-tree.bbclass: Add support to compile overlays separately

2019-01-28 Thread Jaewon Lee
ping -Original Message- From: Jaewon Lee [mailto:jaewon@xilinx.com] Sent: Friday, December 14, 2018 9:54 AM To: openembedded-core@lists.openembedded.org; nat...@nathanrossi.com Cc: Jaewon Lee ; Alejandro Enedino Hernandez Samaniego ; Manjukumar Harthikote Matha Subject: [OE-core][PA

[OE-core] [PATCH v4 6/6] rootfs-postcommands: call preset-all for read-only-rootfs

2019-01-28 Thread Jonas Bonn
When the rootfs is read-only, we cannot rely on systemd's default invocation of preset-all at runtime in order to enable services. As such, we need to do it at image creation time. Signed-off-by: Jonas Bonn --- meta/classes/rootfs-postcommands.bbclass | 2 ++ 1 file changed, 2 insertions(+) di

[OE-core] [PATCH v4 2/6] systemd: do not create machine-id

2019-01-28 Thread Jonas Bonn
There is no reason to have an emtpy machine-id as part of the systemd package. Either: i) the filesystem is writable and the file will be created automatically; or ii) the filesystem is read-only, in which case the empty machine-id file should be created as part of the read-only-rootfs tweaks.

[OE-core] [PATCH v4 5/6] systemd-systemctl-native: simplify and support preset-all

2019-01-28 Thread Jonas Bonn
Now that the systemd class sets up service presets instead of actively enabling services, the 'enable' and 'disable' subcommands for systemctl are not actually used anywhere. As such, we can remove these to make sure that nobody inadvertently introduces new uses of them. We do, however, one case

[OE-core] [PATCH v4 3/6] systemd-conf: simplify creation of machine-specific configuration

2019-01-28 Thread Jonas Bonn
The configuration files that systemd installs are just skeletons detailing the available options and their default values. The recommended means of changing the configuration is to provide snippets in configuration directories. For example, journald.conf settings are best set in /usr/lib/journald

[OE-core] [PATCH v4 4/6] systemd: create preset files instead of installing in image

2019-01-28 Thread Jonas Bonn
At first boot, systemd will create the /etc/systemd/system directory from service preset files. As such, for a normal, writable /etc (writable rootfs), there is no need to set up this directory at image creation time. This patch changes the systemd machinery to create preset files and to rely on

[OE-core] [PATCH v4 1/6] systemd: don't build firstboot by default

2019-01-28 Thread Jonas Bonn
The firstboot service prompts the user for information about the host at first boot. Systemd determines whether or not a boot is a "first boot" by the existence of the file /etc/machine-id. Since oe-core always includes this file (it is part of the systemd package), the firstboot service never ru

[OE-core] [PATCH v4 0/6] systemd patches

2019-01-28 Thread Jonas Bonn
Changed in v4: - add patch to make systemd-firstboot a non-default option to systemd to prevent unexpected prompts at runtime Changed in v3: - parameterize preset-file installation location (as suggested in patch review) Changed in v2: - address patchtest warnings: - include sign-offs on pa

Re: [OE-core] [PATCH v3 0/5] systemd patches

2019-01-28 Thread Jonas Bonn
On 28/01/2019 18:26, Richard Purdie wrote: On Mon, 2019-01-28 at 14:31 +, Richard Purdie wrote: On Mon, 2019-01-28 at 15:26 +0100, Jonas Bonn wrote: Hi, On 28/01/2019 14:55, Richard Purdie wrote: Unfortunately this series failed in testing: https://autobuilder.yoctoproject.org/typhoon

Re: [OE-core] Help needed with ptest

2019-01-28 Thread Scott Rifenbark
Hmm... do we want to expand on the "running ptests" section in the documentation to include some stuff about viewing and analyzing results? We currently have this section here ... https://yoctoproject.org/docs/2.7/mega-manual/mega-manual.html#testing-packages-with-ptest Scott On Mon, Jan 28, 2019

Re: [OE-core] [PATCH v2 0/3] systemd: Fixes Security fix CVE-2018-16864 - CVE-2018-16866

2019-01-28 Thread akuster808
On 1/28/19 3:20 AM, Alexander Kanavin wrote: > Maybe it's better to update systemd to latest upstream release? Thud benefits from this : ) > > Alex > > On Mon, 28 Jan 2019 at 12:17, Marcus Cooper wrote: >> Changed in v2: >> - Added CVE tag, Upstream-Status tag and Sign-off-by tags. >> - remo

Re: [OE-core] [PATCH 11/24] mesa-gl: do not enable nativesdk variant to avoid clashes with main mesa recipe

2019-01-28 Thread Alexander Kanavin
On Mon, 28 Jan 2019 at 18:25, Richard Purdie wrote: > I really hate using remove in OE-Core. Lets find a different way to do > this please as if we do this, its nearly impossible to undo in another > layer... Sure, I think moving 'BBCLASSEXTEND = "native nativesdk"' from mesa.inc to mesa_*.bb sh

Re: [OE-core] [PATCH v3 0/5] systemd patches

2019-01-28 Thread Richard Purdie
On Mon, 2019-01-28 at 14:31 +, Richard Purdie wrote: > On Mon, 2019-01-28 at 15:26 +0100, Jonas Bonn wrote: > > Hi, > > > > On 28/01/2019 14:55, Richard Purdie wrote: > > > Unfortunately this series failed in testing: > > > > > > https://autobuilder.yoctoproject.org/typhoon/#/builders/72/buil

Re: [OE-core] [PATCH 11/24] mesa-gl: do not enable nativesdk variant to avoid clashes with main mesa recipe

2019-01-28 Thread Richard Purdie
On Mon, 2019-01-28 at 13:46 +0100, Alexander Kanavin wrote: > An alternative would be setting PREFERRED_PROVIDER, but for > native/nativesdk > builds mesa-gl is not a viable alternative to mesa, as it lacks all > of the > bits that make accelerated qemu possible. Using PREFERRED_PROVIDER > would >

[OE-core] Yocto Project Unassigned Bugs - Help Needed

2019-01-28 Thread Jolley, Stephen K
All, The triage team meets weekly and does its best to handle the bugs reported into the Bugzilla. The number of people attending that meeting has fallen, as have the number of people available to help fix bugs. One of the things we hear users report is they don't know how to help. We (the tr

Re: [OE-core] [PATCH 24/24] vte: allow building vte-native with gcc 4.8

2019-01-28 Thread Alexander Kanavin
On Mon, 28 Jan 2019 at 17:54, Khem Raj wrote: > Its fine but it would be good to know what the error it. > > +-GdkRGBA color{bg_color}; > > ++GdkRGBA color = bg_color; Sadly I lost the specific error message, but it was basically not recognizing the above syntax.

Re: [OE-core] [PATCH] Converted the manual Runtime testcase to json

2019-01-28 Thread Richard Purdie
On Mon, 2019-01-28 at 09:02 -0800, Khem Raj wrote: > On Mon, Jan 28, 2019 at 12:14 AM Sudhir Sharma < > sudhirx.sha...@intel.com> wrote: > > Added json file of converted manual runtime testcases(compliance > > test cases) > > > > Signed-off-by: Sudhir Sharma > > --- > > meta/lib/oeqa/manual/comp

Re: [OE-core] [PATCH] Converted the manual Runtime testcase to json

2019-01-28 Thread Khem Raj
On Mon, Jan 28, 2019 at 12:14 AM Sudhir Sharma wrote: > > Added json file of converted manual runtime testcases(compliance test cases) > > Signed-off-by: Sudhir Sharma > --- > meta/lib/oeqa/manual/compliance-test.json | 142 > ++ > 1 file changed, 142 insertions(+) >

Re: [OE-core] [PATCH v2 0/3] systemd: Fixes Security fix CVE-2018-16864 - CVE-2018-16866

2019-01-28 Thread Khem Raj
On Mon, Jan 28, 2019 at 3:20 AM Alexander Kanavin wrote: > > Maybe it's better to update systemd to latest upstream release? > Indeed but I would suggest to go to 241 which is in RC stage within week of 240 release > Alex > > On Mon, 28 Jan 2019 at 12:17, Marcus Cooper wrote: > > > > Changed in

Re: [OE-core] [PATCH 24/24] vte: allow building vte-native with gcc 4.8

2019-01-28 Thread Khem Raj
On Mon, Jan 28, 2019 at 4:50 AM Alexander Kanavin wrote: > > Signed-off-by: Alexander Kanavin > --- > ...chool-asignment-to-avoid-gcc-4.8-err.patch | 27 +++ > meta/recipes-support/vte/vte_0.52.2.bb| 5 ++-- > 2 files changed, 30 insertions(+), 2 deletions(-) > create m

Re: [OE-core] [PATCH 1/2 v5] resultstool: enable merge, store, report and regression analysis

2019-01-28 Thread Richard Purdie
Hi Ee Peng, On Mon, 2019-01-28 at 02:12 +, Yeoh, Ee Peng wrote: > Thanks for providing the precious inputs. > Agreed with you that the current patch that enable files based > regression was not enough for other use cases. > > From the information that you had shared, there are 2 more regres

[OE-core] [PATCH 2/2] linux-firmware: split out liquidio firmware

2019-01-28 Thread Ross Burton
Part of this firmware is a pre-built Linux kernel, so it's both huge (25MB) and triggers binary security scanners as the kernel is 3.10.87. Signed-off-by: Ross Burton --- meta/recipes-kernel/linux-firmware/linux-firmware_git.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-

[OE-core] [PATCH 1/2] linux-firmware: recommend split up packages

2019-01-28 Thread Ross Burton
Signed-off-by: Ross Burton --- meta/recipes-kernel/linux-firmware/linux-firmware_git.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb b/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb index ef8bae9f0c6.

[OE-core] [PATCH] classes/icecc: Add ICECC_REMOTE_CPP variable

2019-01-28 Thread Joshua Watt
Newer versions of Icecream (1.2) add support for remotely pre-processing files, controllable with the ICECC_REMOTE_CPP environment variable. Signed-off-by: Joshua Watt --- meta/classes/icecc.bbclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/classes/icecc.bbclass b/meta/classes/

Re: [OE-core] [PATCH v3 0/5] systemd patches

2019-01-28 Thread Richard Purdie
On Mon, 2019-01-28 at 15:26 +0100, Jonas Bonn wrote: > Hi, > > On 28/01/2019 14:55, Richard Purdie wrote: > > Unfortunately this series failed in testing: > > > > https://autobuilder.yoctoproject.org/typhoon/#/builders/72/builds/226 > > > > https://autobuilder.yoctoproject.org/typhoon/#/builders

Re: [OE-core] [PATCH v3 0/5] systemd patches

2019-01-28 Thread Jonas Bonn
Hi, On 28/01/2019 14:55, Richard Purdie wrote: Unfortunately this series failed in testing: https://autobuilder.yoctoproject.org/typhoon/#/builders/72/builds/226 https://autobuilder.yoctoproject.org/typhoon/#/builders/56/builds/167 so it looks like it may need some tweaks before we can merge

Re: [OE-core] [PATCH v2] ltp: Remove admin_tools test

2019-01-28 Thread Richard Purdie
On Mon, 2019-01-14 at 18:47 -0800, He Zhe wrote: > admin_tools test group has been removed from upstream. Backport to > fix the > following failures. > > at_deny01 1 TFAIL : ltpapicmd.c:188: At denyed user to execute test > job > at_allow01 1 TFAIL : ltpapicmd.c:188: At did not allow user to > exe

Re: [OE-core] [PATCH v3 0/5] systemd patches

2019-01-28 Thread Richard Purdie
Unfortunately this series failed in testing: https://autobuilder.yoctoproject.org/typhoon/#/builders/72/builds/226 https://autobuilder.yoctoproject.org/typhoon/#/builders/56/builds/167 so it looks like it may need some tweaks before we can merge it. Cheers, Richard On Sun, 2019-01-27 at 10:3

[OE-core] [PATCH 24/24] vte: allow building vte-native with gcc 4.8

2019-01-28 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...chool-asignment-to-avoid-gcc-4.8-err.patch | 27 +++ meta/recipes-support/vte/vte_0.52.2.bb| 5 ++-- 2 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 meta/recipes-support/vte/vte/0001-app.cc-use-old-school-asig

[OE-core] [PATCH 23/24] selftest: add tests for virgl GL acceleration

2019-01-28 Thread Alexander Kanavin
Note that the tests require that the host machine has a X display, has mesa development files installed and is able to create OpenGL contexts. Signed-off-by: Alexander Kanavin --- meta-selftest/lib/oeqa/runtime/cases/virgl.py | 28 +++ meta/lib/oeqa/selftest/cases/runtime_test.py | 50 +

[OE-core] [PATCH 22/24] runqemu: do not check for GL libraries

2019-01-28 Thread Alexander Kanavin
qemu has been using libepoxy for a long time, and libepoxy loads GL via dlopen() only when instructed to. Signed-off-by: Alexander Kanavin --- scripts/runqemu | 35 --- 1 file changed, 35 deletions(-) diff --git a/scripts/runqemu b/scripts/runqemu index 50888a532

[OE-core] [PATCH 21/24] runqemu: add options for enabling virgl GL acceleration

2019-01-28 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- scripts/runqemu | 23 +++ 1 file changed, 23 insertions(+) diff --git a/scripts/runqemu b/scripts/runqemu index c4a0ca811d9..50888a532e8 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -74,6 +74,9 @@ of the following environment vari

[OE-core] [PATCH 19/24] qemu: add environment variable wrappers to make qemu look good with gtk frontend

2019-01-28 Thread Alexander Kanavin
GTK_THEME instructs gtk to use its built-in theme. Otherwise gtk attempts to use the theme from the host, which may be from a totally mismatching gtk version. On the other hand FONTCONFIG_PATH tells it to use the host fonts, as providing fonts in the native sysroot and instructing the components t

[OE-core] [PATCH 17/24] libjpeg-turbo: fix nativesdk build in same way as native builds are

2019-01-28 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-graphics/jpeg/libjpeg-turbo_2.0.1.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-graphics/jpeg/libjpeg-turbo_2.0.1.bb b/meta/recipes-graphics/jpeg/libjpeg-turbo_2.0.1.bb index d9d877dc0df..029847ff5f4 100644 --- a/meta/recipe

[OE-core] [PATCH 20/24] qemu: add a backported patch to fix egl-headless support

2019-01-28 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...-egl-headless-add-egl_create_context.patch | 50 +++ meta/recipes-devtools/qemu/qemu_3.1.0.bb | 1 + 2 files changed, 51 insertions(+) create mode 100644 meta/recipes-devtools/qemu/qemu/0001-egl-headless-add-egl_create_context.patch

[OE-core] [PATCH 18/24] qemu: add a patch to avoid a missing definition error

2019-01-28 Thread Alexander Kanavin
| In file included from /home/alexander/development/poky/build-virgl-gtk-64/tmp/work/x86_64-nativesdk-pokysdk-linux/nativesdk-qemu/3.1.0-r0/qemu-3.1.0/include/ui/egl-context.h:5, | from /home/alexander/development/poky/build-virgl-gtk-64/tmp/work/x86_64-nativesdk-pokysdk-linux/na

[OE-core] [PATCH 12/24] local.conf.sample: adjust the qemu config to enable gtk+ instead of sdl

2019-01-28 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta-poky/conf/local.conf.sample | 9 +++-- 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/meta-poky/conf/local.conf.sample b/meta-poky/conf/local.conf.sample index cf96598819c..961387acbae 100644 --- a/meta-poky/conf/local.conf.sample +++ b

[OE-core] [PATCH 16/24] qemu: add a gettext-native dependency to gtk option

2019-01-28 Thread Alexander Kanavin
xgettext/msgmerge is used during do_install() when gtk is enabled: https://github.com/qemu/qemu/blob/master/Makefile#L743 Signed-off-by: Alexander Kanavin --- meta/recipes-devtools/qemu/qemu.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/qemu/qemu.i

[OE-core] [PATCH 15/24] atk: disable gobject-introspection for nativesdk

2019-01-28 Thread Alexander Kanavin
We do not support g-i for nativesdk, neverthless atk tries and fails. Signed-off-by: Alexander Kanavin --- meta/recipes-support/atk/atk_2.30.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-support/atk/atk_2.30.0.bb b/meta/recipes-support/atk/atk_2.30.0.bb index 481f8e89a

[OE-core] [PATCH 14/24] qemu: remove support for building against host sdl

2019-01-28 Thread Alexander Kanavin
This hasn't been the default for a long time (as some distros don't support it), and with gtk+ being the new default shouldn't be needed at all. Signed-off-by: Alexander Kanavin --- meta/recipes-devtools/qemu/qemu.inc | 8 1 file changed, 8 deletions(-) diff --git a/meta/recipes-devtoo

[OE-core] [PATCH 13/24] qemu: build target variant with gtk+, and nativesdk variant without sdl

2019-01-28 Thread Alexander Kanavin
As sdl is deprecated in favor of gtk+, it should not be the default. Signed-off-by: Alexander Kanavin --- meta/recipes-devtools/qemu/qemu.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 9

[OE-core] [PATCH 09/24] qemu: enable virglrenderer and glx options for native/nativesdk builds

2019-01-28 Thread Alexander Kanavin
Except for ming32/darwin, which do not support them. Signed-off-by: Alexander Kanavin --- meta/recipes-devtools/qemu/qemu.inc | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index b05c1cee9e

[OE-core] [PATCH 11/24] mesa-gl: do not enable nativesdk variant to avoid clashes with main mesa recipe

2019-01-28 Thread Alexander Kanavin
An alternative would be setting PREFERRED_PROVIDER, but for native/nativesdk builds mesa-gl is not a viable alternative to mesa, as it lacks all of the bits that make accelerated qemu possible. Using PREFERRED_PROVIDER would imply otherwise. Signed-off-by: Alexander Kanavin --- meta/recipes-grap

[OE-core] [PATCH 06/24] libepoxy: enable native/nativesdk variants

2019-01-28 Thread Alexander Kanavin
libepoxy is a requirement of virglrenderer. Note that we strip RPATH from the library, as this allows fall-through to the host GL implementation, instead of attempting (and failing) to use mesa-native. Signed-off-by: Alexander Kanavin --- meta/recipes-graphics/libepoxy/libepoxy_1.5.3.bb | 16 +++

[OE-core] [PATCH 05/24] meta: add native and nativesdk variants to various recipes to enable gtk+3-native/nativesdk

2019-01-28 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.36.11.bb | 2 +- meta/recipes-gnome/gnome/adwaita-icon-theme_3.28.0.bb | 2 ++ .../recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.17.bb | 2 ++ meta/recipes-graphics/cairo/cairo_1.14.12.bb

[OE-core] [PATCH 08/24] virglrenderer: add a recipe

2019-01-28 Thread Alexander Kanavin
This component enables hardware-accelerated GL inside QEMU guests. For more information, see here: https://lwn.net/Articles/767970/ https://www.collabora.com/news-and-blog/blog/2018/02/12/virtualizing-gpu-access/ https://www.collabora.com/news-and-blog/blog/2018/05/09/gpu-virtualization-update/ S

[OE-core] [PATCH 07/24] mesa: enable native and nativesdk variants

2019-01-28 Thread Alexander Kanavin
Note that only the most minimal necessary subset of mesa is built; particularly we don't build any drivers as that is offloaded to the GL implementation provided by the host. Signed-off-by: Alexander Kanavin --- meta/recipes-graphics/mesa/mesa.inc | 20 +--- 1 file changed, 13 in

[OE-core] [PATCH 10/24] qemu: drop --with-gtkabi option, as it is no longer supported

2019-01-28 Thread Alexander Kanavin
Recent qemu versions support gtk+3 only. Signed-off-by: Alexander Kanavin --- meta/recipes-devtools/qemu/qemu.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index b6c98a4923b..95e9e0ede77 100644 -

[OE-core] [PATCH 02/24] gtk+3: remove the gtk-icon-utils-native recipe

2019-01-28 Thread Alexander Kanavin
As we are now build native gtk+3, it already provides the necessary utilities. Signed-off-by: Alexander Kanavin --- meta/recipes-gnome/gtk+/gtk+3.inc | 7 +- .../gtk+/gtk-icon-utils-native_3.22.30.bb | 63 --- ...endency-from-gtk-encode-symbolic-svg.patch | 102 ---

[OE-core] [PATCH 04/24] pixbufcache.bbclass: remove a dependency loop introduced by enabling gtk+3-native

2019-01-28 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/classes/pixbufcache.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/pixbufcache.bbclass b/meta/classes/pixbufcache.bbclass index 3378ff2c806..fb50cd49659 100644 --- a/meta/classes/pixbufcache.bbclass +++ b/meta/cla

[OE-core] [PATCH 03/24] shared-mime-info: update the database also in native builds

2019-01-28 Thread Alexander Kanavin
Otherwise glib-compile-resources fails when building gtk+3-native. Signed-off-by: Alexander Kanavin --- meta/recipes-support/shared-mime-info/shared-mime-info.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-support/shared-mime-info/shared-mime-info.inc b/meta/recipes-supp

[OE-core] [PATCH 01/24] gtk+3: enable native/nativesdk variant

2019-01-28 Thread Alexander Kanavin
Host-assisted GL in Qemu in theory works with both SDL and GTK; in practice SDL shows an empty screen. This prepares the switchover of graphical qemu to use native gtk, which also provides a neat set of menus to control the emulator. Signed-off-by: Alexander Kanavin --- meta/recipes-gnome/gtk+/g

[OE-core] [PATCH 00/24] Enable accelerated OpenGL in qemu

2019-01-28 Thread Alexander Kanavin
V2 changes: addressed feedback from the first review round V3 changes: - better fix for missing qemu X11 include, as discussed with upstream - maintainers.inc entry for virglrenderer - egl-headless support (see below for details) - improvements to kmscube recipe - fix to vte-native to allow buildin

Re: [OE-core] [PATCH 1/1] base.bbclass: Use bb.event.ParseStarted for HOSTTOOLS

2019-01-28 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org core-boun...@lists.openembedded.org> On Behalf Of Robert Yang > Sent: den 28 januari 2019 10:19 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATCH 1/1] base.bbclass: Use bb.event.ParseStar

[OE-core] Help needed with ptest

2019-01-28 Thread Richard Purdie
We now have better data than ever before on the status of the project from a test results perspective. In particular we can now easily collect ptest data. I triggered the tests for qemux86-64 on the autobuilder yesterday, the results are published and you can see them with: wget https://autobuil

Re: [OE-core] [PATCH v2 0/3] systemd: Fixes Security fix CVE-2018-16864 - CVE-2018-16866

2019-01-28 Thread Alexander Kanavin
Maybe it's better to update systemd to latest upstream release? Alex On Mon, 28 Jan 2019 at 12:17, Marcus Cooper wrote: > > Changed in v2: > - Added CVE tag, Upstream-Status tag and Sign-off-by tags. > - removed the verification of the entry length in the header > - squashed CVE-2018-16865 pa

[OE-core] [PATCH v2 2/3] systemd: Security fix CVE-2018-16865

2019-01-28 Thread Marcus Cooper
Affects < v240 Signed-off-by: Marcus Cooper --- ...rnald-set-a-limit-on-the-number-of-fields.patch | 139 + meta/recipes-core/systemd/systemd_239.bb | 1 + 2 files changed, 140 insertions(+) create mode 100644 meta/recipes-core/systemd/systemd/0025-journald-set-

[OE-core] [PATCH v2 0/3] systemd: Fixes Security fix CVE-2018-16864 - CVE-2018-16866

2019-01-28 Thread Marcus Cooper
Changed in v2: - Added CVE tag, Upstream-Status tag and Sign-off-by tags. - removed the verification of the entry length in the header - squashed CVE-2018-16865 patches into one - CVE-2018-16866 patch now taken from systemd-stable and includes an additional heap buffer overflow fix. Marcus

[OE-core] [PATCH v2 1/3] systemd: Security fix CVE-2018-16864

2019-01-28 Thread Marcus Cooper
Affects < v240 Signed-off-by: Marcus Cooper --- ...-not-store-the-iovec-entry-for-process-co.patch | 208 + meta/recipes-core/systemd/systemd_239.bb | 1 + 2 files changed, 209 insertions(+) create mode 100644 meta/recipes-core/systemd/systemd/0024-journald-do-n

[OE-core] [PATCH v2 3/3] systemd: Security fix CVE-2018-16866

2019-01-28 Thread Marcus Cooper
Affects < v240 Signed-off-by: Marcus Cooper --- ...nal-fix-out-of-bounds-read-CVE-2018-16866.patch | 49 ++ meta/recipes-core/systemd/systemd_239.bb | 1 + 2 files changed, 50 insertions(+) create mode 100644 meta/recipes-core/systemd/systemd/0026-journal-fix-out

Re: [OE-core] [PATCH v2] ltp: Remove admin_tools test

2019-01-28 Thread He Zhe
Kindly ping. Zhe On 1/15/19 10:47 AM, He Zhe wrote: > admin_tools test group has been removed from upstream. Backport to fix the > following failures. > > at_deny01 1 TFAIL : ltpapicmd.c:188: At denyed user to execute test job > at_allow01 1 TFAIL : ltpapicmd.c:188: At did not allow user to execu

[OE-core] [PATCH] kernel-fitimage.bbclass: introduce OVERLAY_FDT_DEFAULT_BOOT

2019-01-28 Thread liu . ming50
From: Ming Liu The FDT overlays can be applied to a base DT configuration by setting this variable. The FDT overlays set in this variable must be available in KERNEL_DEVICETREE. Signed-off-by: Ming Liu --- meta/classes/kernel-fitimage.bbclass | 18 ++ 1 file changed, 18 insert

[OE-core] [PATCH 1/1] base.bbclass: Use bb.event.ParseStarted for HOSTTOOLS

2019-01-28 Thread Robert Yang
Fixed: $ export BB_SERVER_TIMEOUT=-1 $ bitbake quilt-native $ rm -fr tmp $ bitbake quilt-native ERROR: Error running gcc --version: /bin/sh: gcc: command not found This is because bb.event.ParseStarted fires only once when server is running, but bb.event.ParseStarted fires every time when build c

[OE-core] [PATCH 0/1] base.bbclass: Use bb.event.ParseStarted for HOSTTOOLS

2019-01-28 Thread Robert Yang
The following changes since commit ebc96f2f612ebc1b7aefb06935bb308fc2e40cfd: libtool: Fix ignoring compiler-rt libs (2019-01-26 23:11:39 +) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/ht http://cgit.openembedded.org/openembedded-core

[OE-core] [PATCH] oeqa/manual/sdk.json: Updated toolchain tarball to core-image-sato

2019-01-28 Thread sangeeta . jain
From: sangeeta jain Manual test step for SDK is updated. Previously toolchain was "poky-glibc-x86_64-core-image-sato-sdk-toolchain-.sh" But toochain for core-image-sato-sdk is not available in releases after 2.1, hence changed it to "poky-glibc-x86_64-core-image-sato--toolchain-.sh Other less

[OE-core] [PATCH] Converted the manual Runtime testcase to json

2019-01-28 Thread Sudhir Sharma
Added json file of converted manual runtime testcases(compliance test cases) Signed-off-by: Sudhir Sharma --- meta/lib/oeqa/manual/compliance-test.json | 142 ++ 1 file changed, 142 insertions(+) create mode 100644 meta/lib/oeqa/manual/compliance-test.json diff --gi

[OE-core] [PATCH] Converted the manual Runtime testcase to json

2019-01-28 Thread Sudhir Sharma
Added json file of converted manual runtime testcases(compliance test cases) Signed-off-by: Sudhir Sharma --- meta/lib/oeqa/manual/compliance-test.json | 142 ++ 1 file changed, 142 insertions(+) create mode 100644 meta/lib/oeqa/manual/compliance-test.json diff --gi