[OE-core] [PATCH 3/3] qemu-targets.inc: Mark 'lm32' as softmmu only architecture

2018-09-20 Thread Nathan Rossi
The lm32 architecture does not support linux-user within QEMU as it is not a Linux supported target. Signed-off-by: Nathan Rossi --- meta/recipes-devtools/qemu/qemu-targets.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/qemu/qemu-targets.inc b/meta

[OE-core] [PATCH 2/3] lib/oe/elf.py: Add LatticeMico32 architecture definition

2018-09-20 Thread Nathan Rossi
Add the ELF definition for the LaticeMico32 architecture. This architecture is 'elf' OS only as it does not target Linux. Signed-off-by: Nathan Rossi --- meta/lib/oe/elf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/lib/oe/elf.py b/meta/lib/oe/elf.py index e63d268c35..0ed59ae05c 10

[OE-core] [PATCH 1/3] siteinfo.bbclass: Add LatticeMico32 architecture site info

2018-09-20 Thread Nathan Rossi
Add the basic architecture site info targets for the LatticeMico32 architecture. This architecture does not target Linux. Signed-off-by: Nathan Rossi --- meta/classes/siteinfo.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/siteinfo.bbclass b/meta/classes/siteinfo.bbclas

[OE-core] [PATCH] libgloss_3.0.0.bb: Ensure ${D}${libdir} exists installing content

2018-09-20 Thread Nathan Rossi
Some targets do not populate any content into libdir, so make sure it is created before attempting to move files/directories into it. Signed-off-by: Nathan Rossi --- meta/recipes-core/newlib/libgloss_3.0.0.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-core/newlib/libgloss_3

[OE-core] [PATCH 0/1 V2] sigwaitinfo01: recent glibc calls syscall directly

2018-09-20 Thread Hongzhi.Song
v2: modify the format of [Upstream-Status] Hongzhi.Song (1): sigwaitinfo01: recent glibc calls syscall directly ...nfo01-recent-glibc-calls-syscall-directly.patch | 75 ++ meta/recipes-extended/ltp/ltp_20180515.bb | 1 + 2 files changed, 76 insertions(+) crea

[OE-core] [PATCH 1/1] sigwaitinfo01: recent glibc calls syscall directly

2018-09-20 Thread Hongzhi.Song
The case of sigwaitinfo related to sigwaitinfo API failed. glibc commit 8b0e795aaa44 ("Simplify Linux sig{timed}wait{info} implementations") changed sigwaitinfo to call sigtimedwait, which calls rt_sigtimedwait syscall directly. So, an invalid pointer no longer crashes child process and tes

[OE-core] ✗ patchtest: failure for glibc: fix Segmentation fault in gethostid.c (rev2)

2018-09-20 Thread Patchwork
== Series Details == Series: glibc: fix Segmentation fault in gethostid.c (rev2) Revision: 2 URL : https://patchwork.openembedded.org/series/14116/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have

Re: [OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-20 Thread Bruce Ashfield
On 2018-09-20 1:54 PM, richard.pur...@linuxfoundation.org wrote: On Fri, 2018-09-21 at 00:25 +0800, Hongxu Jia wrote: On 2018年09月20日 12:54, richard.pur...@linuxfoundation.org wrote: On Thu, 2018-09-20 at 09:45 +0800, Hongxu Jia wrote: I will fix it as my top priority today. Reproduce steps:

Re: [OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-20 Thread richard . purdie
On Fri, 2018-09-21 at 09:55 +0800, Hongxu Jia wrote: > On 2018年09月21日 01:54, richard.pur...@linuxfoundation.org wrote: > > On Fri, 2018-09-21 at 00:25 +0800, Hongxu Jia wrote: > > > On 2018年09月20日 12:54, richard.pur...@linuxfoundation.org wrote: > > > > On Thu, 2018-09-20 at 09:45 +0800, Hongxu Jia

[OE-core] [PATCH v3] glibc: fix Segmentation fault in gethostid.c

2018-09-20 Thread mingli.yu
From: Mingli Yu Linux gethostid: Check for NULL value from gethostbyname_r [BZ #23679] A NULL value can happen with certain gethostbyname_r failures. Before this patch, there is a Segmentation fault as below: # /mybuild/hostid Segmentation fault # gdb /mybuild/hostid GNU gdb (GDB) 8.2 Copy

Re: [OE-core] [oe-core][PATCH] linux-yocto-rt: Add paravirt_kvm support for qemux86-64

2018-09-20 Thread Bruce Ashfield
Confirmed. It was already in my queue. It will go out shortly. Bruce On Thu, Sep 20, 2018 at 10:26 PM, Hongzhi, Song wrote: > Hi Bruce, > > I just want to confirm that you doesn't forget this patch. > > This is not an emergency. > > > Thanks, > > Hongzhi > > > > On 09/11/2018 11:15 AM, Bruce As

[OE-core] ✗ patchtest: failure for sigwaitinfo01: recent glibc calls syscall directly

2018-09-20 Thread Patchwork
== Series Details == Series: sigwaitinfo01: recent glibc calls syscall directly Revision: 1 URL : https://patchwork.openembedded.org/series/14166/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have b

[OE-core] [PATCH] sigwaitinfo01: recent glibc calls syscall directly

2018-09-20 Thread Hongzhi.Song
The case of sigwaitinfo related to sigwaitinfo API failed. glibc commit 8b0e795aaa44 ("Simplify Linux sig{timed}wait{info} implementations") changed sigwaitinfo to call sigtimedwait, which calls rt_sigtimedwait syscall directly. So, an invalid pointer no longer crashes child process and tes

[OE-core] [PATCH 0/1] runqemu: fix handling of SIGTERM and the problem of line wrapping

2018-09-20 Thread Chen Qi
*** BLURB HERE *** The following changes since commit 18b90a0fd9bdc00d82140fbd55761e9cea308fb1: yocto-uninative: Add aarch64 uninative tarball checksum (2018-09-20 09:06:00 -0700) are available in the git repository at: git://git.pokylinux.org/poky-contrib ChenQi/runqemu-fix http://git.po

[OE-core] [PATCH 1/1] runqemu: fix handling of SIGTERM and the problem of line wrapping

2018-09-20 Thread Chen Qi
The current handling of SIGTERM is incorrect as the process pid returned by Popen call with shell setting to True is actualy the shell instead of the qemu binary. So fix to send SIGTERM to the process group of runqemu. This ensures that all processes in the same process group, including the shell a

Re: [OE-core] [oe-core][PATCH] linux-yocto-rt: Add paravirt_kvm support for qemux86-64

2018-09-20 Thread Hongzhi, Song
Hi Bruce, I just want to confirm that you doesn't forget this patch. This is not an emergency. Thanks, Hongzhi On 09/11/2018 11:15 AM, Bruce Ashfield wrote: On 2018-09-09 6:44 AM, Hongzhi.Song wrote: This feature includes paravirtualized KVM guest support, including KVMCLOCK for enhancing

Re: [OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-20 Thread Hongxu Jia
On 2018年09月21日 01:54, richard.pur...@linuxfoundation.org wrote: On Fri, 2018-09-21 at 00:25 +0800, Hongxu Jia wrote: On 2018年09月20日 12:54, richard.pur...@linuxfoundation.org wrote: On Thu, 2018-09-20 at 09:45 +0800, Hongxu Jia wrote: I will fix it as my top priority today. Reproduce steps: -

[OE-core] [PATCH] mobile-broadband-provider: fix SRC_URI

2018-09-20 Thread Anuj Mittal
Fixes build for older versions of git which don't follow redirects properly if the .git suffix is missing. Signed-off-by: Anuj Mittal --- .../mobile-broadband-provider-info_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-connectivity

Re: [OE-core] [PATCH] mesa: enable virgl driver for qemux86/qemux86-64

2018-09-20 Thread Burton, Ross
I'm assuming you have a local config to turn on gallium, as that isn't enabled by default. Ross On Wed, 19 Sep 2018 at 04:28, wrote: > > From: Ming Liu > > virgl driver should be enabled for qemux86/qemux86-64 machines, or else > it will cause runtime issue due to virtio_gpu driver missing. > >

Re: [OE-core] ✗ patchtest: failure for openssh: make OpenSSL optional (rev2)

2018-09-20 Thread Andreas Oberritter
On Thu, 20 Sep 2018 21:29:20 +0200 Max Kellermann wrote: > On 2018/09/20 21:13, Andre McCurdy wrote: > > Try putting both tags at the start of a line rather than indenting. > > That's what "git show" does, which I used to generate the patch file. > I'll resend without indent, thanks. Try "gi

[OE-core] [PATCH v2 4/9] nspr: Add ARC support

2018-09-20 Thread Alexey Brodkin
From: Antoine Tenart [Alexey: Rebased on top of other patches like RiscV, NIOS2 etc] Signed-off-by: Antoine Tenart Signed-off-by: Alexey Brodkin --- Changes v1 -> v2: * Added upstream status .../nspr/nspr/0004-Add-ARC-support.patch | 88 ++ meta/recipes-suppo

[OE-core] [PATCH v2 8/9] binutils: Fix Glibc building for ARC

2018-09-20 Thread Alexey Brodkin
Signed-off-by: Alexey Brodkin --- Changes v1 -> v2: * Added upstream status meta/recipes-devtools/binutils/binutils-2.31.inc | 4 + ...location-where-GOT-information-is-collect.patch | 201 + ...bustness.-Return-FALSE-in-case-of-NULL-po.patch | 38 ...lobal-symbo

[OE-core] [PATCH v2 9/9] gcc: Fix specs generation for ARC

2018-09-20 Thread Alexey Brodkin
GCC's built-in spec for LD is missing a space after "--eh-frame-hdr" thus with the next option merged together they are not understood by LD and so LD fails. Back-port from upstream GCC, see: https://github.com/gcc-mirror/gcc/commit/892142379c6b99fe8c3ebdfe0b79e2a435228c1d Signed-off-by: Alexey B

[OE-core] [PATCH v2 5/9] libgpg-error: Add ARC support

2018-09-20 Thread Alexey Brodkin
Signed-off-by: Alexey Brodkin --- Changes v1 -> v2: * Added upstream status ...port-ARC-CPUs-and-simplify-aliasing-table.patch | 298 + .../libgpg-error/libgpg-error_1.32.bb | 2 + 2 files changed, 300 insertions(+) create mode 100644 meta/recipes-support/

[OE-core] [PATCH v2 6/9] icu: Add ARC support

2018-09-20 Thread Alexey Brodkin
Signed-off-by: Alexey Brodkin --- Changes v1 -> v2: * Added upstream status .../icu/icu/0002-Add-ARC-support.patch | 27 ++ meta/recipes-support/icu/icu_62.1.bb | 1 + 2 files changed, 28 insertions(+) create mode 100644 meta/recipes-support/icu

[OE-core] [PATCH v2 7/9] gcc: Disable libitm for ARC

2018-09-20 Thread Alexey Brodkin
The libitm is not supported on ARC, so disable it Signed-off-by: Alexey Brodkin --- No changes in v2 meta/recipes-devtools/gcc/gcc-runtime.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc index 72b808

[OE-core] [PATCH v2 1/9] siteinfo: Define data for ARC

2018-09-20 Thread Alexey Brodkin
Signed-off-by: Alexey Brodkin --- Changes v1 -> v2: * Merged changes in meta/classes/siteinfo.bbclass & meta/site/arc-common meta/classes/siteinfo.bbclass | 2 ++ meta/site/arc-common | 11 +++ 2 files changed, 13 insertions(+) create mode 100644 meta/site/arc-common dif

[OE-core] [PATCH v2 3/9] openssl: Add support for ARC

2018-09-20 Thread Alexey Brodkin
Signed-off-by: Alexey Brodkin --- No changes in v2 meta/recipes-connectivity/openssl/openssl10_1.0.2p.bb | 2 +- meta/recipes-connectivity/openssl/openssl_1.1.1.bb| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-connectivity/openssl/openssl10_1.0.2p.bb b/

[OE-core] [PATCH v2 2/9] kernel-arch.bbclass: Add ARC to kernel arch map

2018-09-20 Thread Alexey Brodkin
Signed-off-by: Alexey Brodkin --- No changes in v2 meta/classes/kernel-arch.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/kernel-arch.bbclass b/meta/classes/kernel-arch.bbclass index 09793fc9c2..2b52a63c64 100644 --- a/meta/classes/kernel-arch.bbclass +++ b/meta/class

[OE-core] [PATCH v2 0/9] Introduce ARC port of OpenEmbedded

2018-09-20 Thread Alexey Brodkin
DesignWare ARC Processors are a family of 32-bit CPUs from Synopsys. This series introduces basic support for ARC architecture in OpenEmbedded. As of today latest upstream GCC and Binutils are perfectly usable for building packages for ARC so we just need a couple of fixes. Glibc for ARC is under

[OE-core] [PATCH v4] openssh: make OpenSSL optional

2018-09-20 Thread Max Kellermann
From: Max Kellermann Without OpenSSL, OpenSSH can still do ed25519, which is enough for many users; and it saves a rather heavy dependency. This requires a patch because lots of `#ifdef WITH_OPENSSL` are missing. Signed-off-by: Max Kellermann --- .../openssh/openssh/fix_without-openssl.patch

Re: [OE-core] ✗ patchtest: failure for openssh: make OpenSSL optional (rev2)

2018-09-20 Thread Max Kellermann
On 2018/09/20 21:13, Andre McCurdy wrote: > Try putting both tags at the start of a line rather than indenting. That's what "git show" does, which I used to generate the patch file. I'll resend without indent, thanks. -- ___ Openembedded-core mailing l

Re: [OE-core] ✗ patchtest: failure for openssh: make OpenSSL optional (rev2)

2018-09-20 Thread Andre McCurdy
On Thu, Sep 20, 2018 at 12:07 PM, Max Kellermann wrote: > On 2018/09/20 21:02, Patchwork wrote: >> * Issue A patch file has been added, but does not have a >> Signed-off-by tag [test_signed_off_by_presence] >> Suggested fixSign off the added patch file >> (meta/recipes-connect

Re: [OE-core] ✗ patchtest: failure for openssh: make OpenSSL optional (rev2)

2018-09-20 Thread Max Kellermann
On 2018/09/20 21:02, Patchwork wrote: > * Issue A patch file has been added, but does not have a > Signed-off-by tag [test_signed_off_by_presence] > Suggested fixSign off the added patch file > (meta/recipes-connectivity/openssh/openssh/fix_without-openssl.patch) > > * Issue

[OE-core] ✗ patchtest: failure for openssh: make OpenSSL optional (rev2)

2018-09-20 Thread Patchwork
== Series Details == Series: openssh: make OpenSSL optional (rev2) Revision: 2 URL : https://patchwork.openembedded.org/series/14158/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed

[OE-core] [PATCH v3] openssh: make OpenSSL optional

2018-09-20 Thread Max Kellermann
From: Max Kellermann Without OpenSSL, OpenSSH can still do ed25519, which is enough for many users; and it saves a rather heavy dependency. This requires a patch because lots of `#ifdef WITH_OPENSSL` are missing. Signed-off-by: Max Kellermann --- .../openssh/openssh/fix_without-openssl.patch

[OE-core] ✗ patchtest: failure for openssh: make OpenSSL optional

2018-09-20 Thread Patchwork
== Series Details == Series: openssh: make OpenSSL optional Revision: 1 URL : https://patchwork.openembedded.org/series/14158/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed on the

[OE-core] [PATCH] [oe-core] openssh: make OpenSSL optional

2018-09-20 Thread Max Kellermann
From: Max Kellermann Without OpenSSL, OpenSSH can still do ed25519, which is enough for many users; and it saves a rather heavy dependency. This requires a patch because lots of `#ifdef WITH_OPENSSL` are missing. Signed-off-by: Max Kellermann --- .../openssh/openssh/fix_without-openssl.patch

Re: [OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-20 Thread richard . purdie
On Fri, 2018-09-21 at 00:25 +0800, Hongxu Jia wrote: > On 2018年09月20日 12:54, richard.pur...@linuxfoundation.org wrote: > > On Thu, 2018-09-20 at 09:45 +0800, Hongxu Jia wrote: > > > I will fix it as my top priority today. > > > > > > Reproduce steps: > > > > > > - Build core-image-sato-sdk on qem

[OE-core] ✗ patchtest: failure for xserver-xorg: remove obsolete patch

2018-09-20 Thread Patchwork
== Series Details == Series: xserver-xorg: remove obsolete patch Revision: 1 URL : https://patchwork.openembedded.org/series/14157/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed on

Re: [OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-20 Thread Hongxu Jia
On 2018年09月20日 12:54, richard.pur...@linuxfoundation.org wrote: On Thu, 2018-09-20 at 09:45 +0800, Hongxu Jia wrote: I will fix it as my top priority today. Reproduce steps: - Build core-image-sato-sdk on qemuarm64 - Run qemu - Log over ssh (openssh) failed I did have a little bit of a look

[OE-core] [PATCH] xserver-xorg: remove obsolete patch

2018-09-20 Thread Ross Burton
This patch is forcing input to use SIGIO, despite the fact that since 2015 xserver has used an input thread. Signed-off-by: Ross Burton --- .../0003-Remove-check-for-useSIGIO-option.patch| 47 -- .../xorg-xserver/xserver-xorg_1.20.1.bb| 1 - 2 files changed,

[OE-core] [OE-Core][PATCH 2/2] p11-kit: Add PACKAGECONFIG for trust paths

2018-09-20 Thread Alex Kiernan
Add trust-paths PACKAGECONFIG item which enables support for default trust-paths in /etc/ssl/certs/ca-certificates.crt Signed-off-by: Alex Kiernan --- meta/recipes-support/p11-kit/p11-kit_0.23.14.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-support/p11-

[OE-core] [OE-Core][PATCH 1/2] p11-kit: Upgrade from 0.22.1 -> 0.23.14

2018-09-20 Thread Alex Kiernan
p11-kit is no longer doing odd/even for development/stable releases, so drop the custom UPSTREAM_CHECK_GITTAGREGEX. Signed-off-by: Alex Kiernan --- ...NGUAS-drop-the-languages-for-which-upstream-does-n.patch | 13 + .../p11-kit/{p11-kit_0.22.1.bb => p11-kit_0.23.14.bb} | 4 +-

Re: [OE-core] [PATCH] glibc-package.inc: correct intention for deleting /usr/lib as needed

2018-09-20 Thread Burton, Ross
That's better than HTML! On Thu, 20 Sep 2018 at 15:04, Belal, Awais wrote: > > Hi Ross, > > >> Can you resend using git-send-email, as this patch is encoded in HTML. > My SMTP server is acting up these days, should I simply resend the patch here > as an attachment? > > BR, > Awais > > ___

Re: [OE-core] [PATCH 1/2] [oe-core] openssh: make OpenSSL optional

2018-09-20 Thread Max Kellermann
On 2018/09/20 16:11, Alexander Kanavin wrote: > I don't object to the patch (except it would need to be rebased on top > of the openssl 1.1 patch), but I would like to know a bit more. Ok, I'll do that once that one is merged. > What is ed25519? Can a client that supports only that connect to mo

Re: [OE-core] [PATCH 1/2] [oe-core] openssh: make OpenSSL optional

2018-09-20 Thread Alexander Kanavin
2018-09-20 15:16 GMT+02:00 Max Kellermann : > Without OpenSSL, OpenSSH can still do ed25519, which is enough for > many users; and it saves a rather heavy dependency. I don't object to the patch (except it would need to be rebased on top of the openssl 1.1 patch), but I would like to know a bit mo

Re: [OE-core] [PATCH] glibc-package.inc: correct intention for deleting /usr/lib as needed

2018-09-20 Thread Belal, Awais
Hi Ross, >> Can you resend using git-send-email, as this patch is encoded in HTML. My SMTP server is acting up these days, should I simply resend the patch here as an attachment? BR, Awais From: Burton, Ross [ross.bur...@intel.com] Sent: Thursday, Septem

[OE-core] [PATCH 1/2] [oe-core] openssh: make OpenSSL optional

2018-09-20 Thread Max Kellermann
From: Max Kellermann Without OpenSSL, OpenSSH can still do ed25519, which is enough for many users; and it saves a rather heavy dependency. Signed-off-by: Max Kellermann --- meta/recipes-connectivity/openssh/openssh_7.8p1.bb | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --

[OE-core] [PATCH 2/2] [oe-core] libsolv: make rpm optional

2018-09-20 Thread Max Kellermann
From: Max Kellermann Signed-off-by: Max Kellermann --- meta/recipes-extended/libsolv/libsolv_0.6.35.bb | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/libsolv/libsolv_0.6.35.bb b/meta/recipes-extended/libsolv/libsolv_0.6.35.bb index 0956453022..

Re: [OE-core] [PATCH] rpm: handle virtual memory usage when limit is set

2018-09-20 Thread Peter Bergin
On 2018-09-20 01:02, Andre McCurdy wrote: On Wed, Sep 19, 2018 at 2:05 PM, Peter Bergin wrote: Fix the situation where the task do_package_write_rpm ends up in "liblzma: memory allocation failed". This happens if the host environment has set a limit on virtual_memory for the user with 'ulimit -

Re: [OE-core] [PATCH 1/3] xserver-xorg: upgrade 1.19.6 -> 1.20.1

2018-09-20 Thread Burton, Ross
Patch to remove that sent. I also sent upstream the arm/musl/inb patch. Ross On Wed, 19 Sep 2018 at 05:15, Khem Raj wrote: > > On Mon, Sep 17, 2018 at 7:51 PM Mittal, Anuj wrote: > > > > > > > > > -Original Message- > > > From: openembedded-core-boun...@lists.openembedded.org > > > [ma

[OE-core] [PATCH] xserver-xorg: remove redundant patch

2018-09-20 Thread Ross Burton
Upstream doesn't assume a monotonic clock isn't available anymore, so we can remove this patch. Signed-off-by: Ross Burton --- ...onfigure.ac-Fix-check-for-CLOCK_MONOTONIC.patch | 60 -- .../xorg-xserver/xserver-xorg_1.20.1.bb| 1 - 2 files changed, 61 deletions(

Re: [OE-core] [PATCH] glibc-package.inc: correct intention for deleting /usr/lib as needed

2018-09-20 Thread Burton, Ross
Can you resend using git-send-email, as this patch is encoded in HTML. Ross On Tue, 18 Sep 2018 at 11:53, Belal, Awais wrote: > > In case the baselib is lib64 we would want to delete /usr/lib > after removing the /usr/lib/locale dir and the implementation > wanted to do that earlier as well but t

[OE-core] [openembedded][qtwayland][weston]: Small text in text fields QML and keyboard problem

2018-09-20 Thread Mohamed Dawod
Hello everyone, I built an image with wayland weston and removed x11, I added meta-qt5 layer to run qt5 apps, I could run qt5 apps but there is two problems: 1- text font is too small in text fields and app title bar 2- keyboard not response! I can not type any thing. Keyboard is working well with

Re: [OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-20 Thread Hongxu Jia
On 2018年09月20日 17:44, Hongxu Jia wrote: I am digging into kernel Comparing with qemux86-64, qemumips, qemuarm, I am afraid the qemuarm64 kernel lack of CONFIG_VIRTIO_PCI=y CONFIG_VIRTIO_PCI_LEGACY=y //Hongxu //Hongxu -- ___ Openembedded-core mai

Re: [OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-20 Thread Hongxu Jia
On 2018年09月20日 12:54, richard.pur...@linuxfoundation.org wrote: On Thu, 2018-09-20 at 09:45 +0800, Hongxu Jia wrote: I will fix it as my top priority today. Reproduce steps: - Build core-image-sato-sdk on qemuarm64 - Run qemu - Log over ssh (openssh) failed I did have a little bit of a look

Re: [OE-core] [PATCH] glibc-package.inc: correct intention for deleting /usr/lib as needed

2018-09-20 Thread Belal, Awais
ping! BR, Awais From: openembedded-core-boun...@lists.openembedded.org on behalf of Belal, Awais Sent: Tuesday, September 18, 2018 3:36 PM To: openembedded-core@lists.openembedded.org Subject: [OE-core] [PATCH] glibc-package.inc: correct intention for deleting

Re: [OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-20 Thread Bruce Ashfield
On 09/20/2018 12:54 AM, richard.pur...@linuxfoundation.org wrote: On Thu, 2018-09-20 at 09:45 +0800, Hongxu Jia wrote: I will fix it as my top priority today. Reproduce steps: - Build core-image-sato-sdk on qemuarm64 - Run qemu - Log over ssh (openssh) failed I did have a little bit of a lo