[OE-core] Fwd: [oe] [openembedded][wayland][weston]: How to configure screen resolution

2018-09-11 Thread Mohamed Dawod
-- Forwarded message - From: Mohamed Dawod Date: Mon, Sep 10, 2018 at 1:15 PM Subject: Re: [oe] [openembedded][wayland][weston]: How to configure screen resolution To: I typed the following weston.ini and weston-init.bbappend file but no thing change

Re: [OE-core] [PATCH v2] python3{,-native}: update to 3.7.0

2018-09-11 Thread Jens Rehsack
> Am 10.09.2018 um 23:33 schrieb Alejandro Enedino Hernandez Samaniego > : > > Hey Jens, > > > As I explained before, when you create a manifest for python (target), it > uses the native build as base (it literally runs the native python that was > just built), it is assumed its the same

Re: [OE-core] [PATCH v2] python3{,-native}: update to 3.7.0

2018-09-11 Thread Jens Rehsack
2018-09-10 18:38 GMT+02:00 Burton, Ross : > One thing to be aware of is that I've been fixing up Python's PGO > support and there's a slew of patches in master-next and more just > posted that this needs to be rebased on top of. Good news is that my > patches remove two of the patches we've been

Re: [OE-core] [PATCH] tclibc-baremetal.inc: Remove BASEDEPENDS on compilerlibs

2018-09-11 Thread Nathan Rossi
On Tue, 11 Sep 2018 at 02:14, Khem Raj wrote: > > On Mon, Sep 10, 2018 at 5:45 AM Nathan Rossi wrote: > > > > Without a libc the gcc-runtime provider of compilerlibs does not > > compile. As such avoid the default dependence on the > > virtual/${TARGET_PREFIX}compilerlibs provider. > > > >

[OE-core] ✗ patchtest: failure for harfbuzz: remove stale pkg.m4 (rev2)

2018-09-11 Thread Patchwork
== Series Details == Series: harfbuzz: remove stale pkg.m4 (rev2) Revision: 2 URL : https://patchwork.openembedded.org/series/13825/ 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] ✗ patchtest: failure for pkgconf: don't use alternatives

2018-09-11 Thread Patchwork
== Series Details == Series: pkgconf: don't use alternatives Revision: 1 URL : https://patchwork.openembedded.org/series/14014/ 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] openssh: build support openssl 1.1

2018-09-11 Thread Hongxu Jia
The reason why has this patch is the build failure with meta-selinux [snip] ERROR: The file /usr/include/openssl/stack.h is installed by both openssl and openssl10, aborting [snip] While adding meta-selinux, openssh -> libselinux -> python -> openssl and openssh -> openssl10, (`->' means

[OE-core] ✗ patchtest: failure for lrzsz: fix CVE-2018-10195

2018-09-11 Thread Patchwork
== Series Details == Series: lrzsz: fix CVE-2018-10195 Revision: 1 URL : https://patchwork.openembedded.org/series/14013/ 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

Re: [OE-core] [PATCH 1/1] autotools: do more cleanup when in do_configure

2018-09-11 Thread Richard Purdie
On Tue, 2018-09-11 at 09:30 +0800, ChenQi wrote: > On 09/10/2018 06:24 PM, Burton, Ross wrote: > > On 10 September 2018 at 11:02, Chen Qi > > wrote: > > > I met the following error when compiling some projects. > > > > > > > configure: error: `LDFLAGS' has changed since the previous run: > > > >

[OE-core] [PATCH] openssh: build support openssl 1.1

2018-09-11 Thread Hongxu Jia
As commit `5ccf4a9 openssh: depend on openssl 1.0' suggested, take a patch from Fedora 29 to get openssl 1.1 support Signed-off-by: Hongxu Jia --- .../openssh/0001-build-support-openssl-1.1.0.patch | 2502 meta/recipes-connectivity/openssh/openssh_7.8p1.bb |4 +- 2

Re: [OE-core] [PATCH] libgloss_3.0.0.bb: Fix up mv pattern to include libnosys

2018-09-11 Thread Nathan Rossi
On Tue, 11 Sep 2018 at 02:19, Khem Raj wrote: > > On Mon, Sep 10, 2018 at 5:43 AM Nathan Rossi wrote: > > > > When installing libgloss libraries handle the ${TARGET_SYS}/lib contents > > so that it is placed in ${libdir} instead of ${libdir}/lib. This > > resolves a packaging QA issue. > > > >

[OE-core] [PATCH] pkgconf: don't use alternatives

2018-09-11 Thread Ross Burton
There's no need to do alternatives as pkgconf and pkg-config won't be installed at the same time, and pkg-config doesn't do alternatives either. Signed-off-by: Ross Burton --- meta/recipes-devtools/pkgconf/pkgconf_1.5.3.bb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git

[OE-core] [PATCH] lrzsz: fix CVE-2018-10195

2018-09-11 Thread Ross Burton
"Integer overflow in src/zm.c:zsdata() causes crash in sz and can leak information to receiver." Take a patch from Fedora to resolve CVE-2018-10195. Signed-off-by: Ross Burton --- .../lrzsz/lrzsz-0.12.20/cve-2018-10195.patch | 28 ++

[OE-core] [PATCH] harfbuzz: remove stale pkg.m4

2018-09-11 Thread Ross Burton
harfbuzz shipped an old pkg.m4 which overruled the pkg.m4 from the sysroot. This is now fixed upstream, but until another release is made delete it from the source tree. Signed-off-by: Ross Burton --- meta/recipes-graphics/harfbuzz/harfbuzz_1.8.8.bb | 6 ++ 1 file changed, 6 insertions(+)

[OE-core] [PATCH] yasm: remove

2018-09-11 Thread Ross Burton
Nothing in oe-core is using yasm now that gstreamer-libav and ffmpeg are using nasm, so remove it from oe-core. Signed-off-by: Ross Burton --- meta/conf/distro/include/maintainers.inc | 1 - meta/recipes-devtools/yasm/yasm_1.3.0.bb | 16 2 files changed, 17 deletions(-)

Re: [OE-core] [PATCH] openssh: build support openssl 1.1

2018-09-11 Thread Alexander Kanavin
I'm afraid I have changed my mind, and I have to say no to this. It is *not* a backport, it is a very large patch that nobody understands, it will need to be rebased every time there is new openssh out, we cannot rely on Fedora doing this, as they apply this patch on top of their other patches.

Re: [OE-core] [PATCH V2] defaultsetup.conf: Enable security flags+pie by default

2018-09-11 Thread Richard Purdie
On Fri, 2018-09-07 at 15:28 +0200, Andrea Adami wrote: > What is holding back this patch? I think there were concerns about changing the OE defaults like this so Khem and I agreed to merge it into poky as a default there for now. There are probably a few defaults in poky we should have in

[OE-core] [meta-oe][PATCH RESEND] devicetree.bbclass: don't pad DT overlays

2018-09-11 Thread lucaceresoli77
From: Luca Ceresoli By default the devicetree class adds padding to the generated .dtb files, which can be needed by the bootloader. However it also pads .dtbo files, which is not useful. Don't apply padding to the overlay devicetrees. To achieve this: * move "-p ${DT_PADDING_SIZE}" to a new

Re: [OE-core] python test files installed in image on purpose?

2018-09-11 Thread Richard Purdie
On Fri, 2018-09-07 at 14:02 -0500, Andrew Geissler wrote: > Hi, > > We've been running into some flash space issues over in the openbmc > project. I noticed the python.bb file (python_2.7.14.bb for us) is > installing some test folders/files in our rootfs image. > > # find /usr/lib/python2.7/

Re: [OE-core] [meta-oe][PATCH RESEND] devicetree.bbclass: don't pad DT overlays

2018-09-11 Thread Nathan Rossi
On Tue, 11 Sep 2018 at 21:14, wrote: > > From: Luca Ceresoli > > By default the devicetree class adds padding to the generated .dtb > files, which can be needed by the bootloader. However it also pads > .dtbo files, which is not useful. > > Don't apply padding to the overlay devicetrees. > > To

[OE-core] [PATCH 0/6] Reproducible: Find the git repo in WORKDIR/git or S first

2018-09-11 Thread Douglas Royds
Change the search regime for find_git_folder(): 1. WORKDIR/git: This is the default git fetcher unpack path 2. ${S} 3. Go looking for .git/ under the WORKDIR as a last resort. linux-yocto: We had an existing (silent) defect. The linux-yocto recipes all specify two git SRC_URIs, one for the

[OE-core] [PATCH 2/6] Reproducible: Refactor: get_source_date_epoch_from_youngest_file()

2018-09-11 Thread Douglas Royds
Signed-off-by: Douglas Royds --- meta/classes/reproducible_build.bbclass | 59 ++--- 1 file changed, 33 insertions(+), 26 deletions(-) diff --git a/meta/classes/reproducible_build.bbclass b/meta/classes/reproducible_build.bbclass index 4e8850fb83..e118cfde01 100644 ---

[OE-core] [PATCH 1/6] Reproducible: Tidy class description

2018-09-11 Thread Douglas Royds
Tidy whitespace, delete commented-out lines Signed-off-by: Douglas Royds --- meta/classes/reproducible_build.bbclass | 41 +++-- 1 file changed, 18 insertions(+), 23 deletions(-) diff --git a/meta/classes/reproducible_build.bbclass b/meta/classes/reproducible_build.bbclass

[OE-core] [PATCH 4/6] Reproducible: Find the git repo in WORKDIR/git or S first

2018-09-11 Thread Douglas Royds
Change the search regime for find_git_folder(): 1. WORKDIR/git: This is the default git fetcher unpack path 2. ${S} 3. Go looking for .git/ under the WORKDIR as a last resort. linux-yocto: We had an existing (silent) defect. The linux-yocto recipes all specify two git SRC_URIs, one for the

[OE-core] [PATCH 3/6] Reproducible: Rename ambiguous "path" var to sourcedir or workdir as appropriate

2018-09-11 Thread Douglas Royds
Signed-off-by: Douglas Royds --- meta/classes/reproducible_build.bbclass | 37 + 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/meta/classes/reproducible_build.bbclass b/meta/classes/reproducible_build.bbclass index e118cfde01..3f3790dfe3 100644 ---

[OE-core] [PATCH 6/6] Reproducible: Consistent debug logging

2018-09-11 Thread Douglas Royds
Log both the source of the source_date_epoch and the resulting source_date_epoch in all cases. Also, now that we are determining the source_date_epoch successfully for both yocto and non-yocto kernels, remove the inherits_class('kernel') exception. We will log a failure to find a

[OE-core] [PATCH 5/6] Reproducible: Don't enforce existence of ${S} dir

2018-09-11 Thread Douglas Royds
Unnecessary. Signed-off-by: Douglas Royds --- meta/classes/reproducible_build.bbclass | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/meta/classes/reproducible_build.bbclass b/meta/classes/reproducible_build.bbclass index 42cb37b042..a81f249790 100644 ---

Re: [OE-core] ✗ patchtest: failure for Reproducible: Find the git repo in WORKDIR/git or S first

2018-09-11 Thread Douglas Royds
The patch series already was applied on top of b7f3f7ecfd. I observe at http://lists.openembedded.org/pipermail/openembedded-core/2018-September/thread.html that the patch set didn't hit the list threaded. Might this have been the reason for the Patchwork rejection? git send-email appears

Re: [OE-core] [oe] Fwd: [openembedded][wayland][weston]: How to configure screen resolution

2018-09-11 Thread Stefan Agner
I think weston is using KMS connector names. Try HDMI-A-1. Otherwise, running weston with --log=weston.log will produce a helpful logfile. -- Stefan On 11.09.2018 02:02, Mohamed Dawod wrote: > -- Forwarded message - > From: Mohamed Dawod > Date: Mon, Sep 10, 2018 at 1:15 PM >

[OE-core] [PATCH v3] wic: Introduce the --use-label partition parameter

2018-09-11 Thread Kevin Hao
We can use this parameter to make the wic use the label to name a partition in /etc/fstab. Signed-off-by: Kevin Hao Reviewed-by: Tom Rini --- v3: No change since v2, just rebase on the master branch. scripts/lib/wic/help.py | 18 +- scripts/lib/wic/ksparser.py

[OE-core] Build failure with parallel build and opkg

2018-09-11 Thread Stefan Agner
Hi, We experience build errors as follows every now and then: ... ERROR: full-container-image-0.1-r0 do_populate_sdk: Unable to install packages. Command '/workdir/oe/tmp/work/colibri_imx7-lmp-linux-gnueabi/full-container-image/0.1-r0/recipe-sysroot-native/usr/bin/opkg --volatile-cache -f

[OE-core] ✗ patchtest: failure for Reproducible: Find the git repo in WORKDIR/git or S first

2018-09-11 Thread Patchwork
== Series Details == Series: Reproducible: Find the git repo in WORKDIR/git or S first Revision: 1 URL : https://patchwork.openembedded.org/series/14024/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several

[OE-core] [openembedded][wayland][weston]

2018-09-11 Thread Mohamed Dawod
Hi, I need to change the screen resolution of weston in my new custom image. I used weston.ini file and installed it to the image in the path "/etc/xdg/weston" and i also installed the file to this path "/home/root/.config" This way worked well with Jethro release of openembedded but with sumo

[OE-core] Yocto Project Status WW37’18

2018-09-11 Thread Jolley, Stephen K
Current Dev Position: YP 2.6 M3. - This is feature freeze for YP 2.6! Next Deadline: YP 2.6 M3 Build Target is Aug. 27, 2018 SWAT Team Rotation: · SWAT lead is currently: Amanda · SWAT team rotation: Amanda -> Tracy on Sept. 14, 2018 · SWAT team rotation: Tracy->

Re: [OE-core] [PATCH] test-result-log: testcase management tool to store test result

2018-09-11 Thread Richard Purdie
Hi Ee Peng, I've been having a look at this code and whilst some of it is good, I also have some concerns. With it coming in so late in the cycle, its made it hard to have time to review it and allow time to get it right. With something as important as this to the way the future QA work is done,

[OE-core] [PATCH] socat: Cache shift value for CRDLY, TABDLY and CSIZE

2018-09-11 Thread Khem Raj
Match it to definitions in arch//include/uapi/asm/termbits.h Signed-off-by: Khem Raj --- .../recipes-connectivity/socat/socat_1.7.3.2.bb | 17 +++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/meta/recipes-connectivity/socat/socat_1.7.3.2.bb

[OE-core] [PATCH] coreutils: add alternative target for nice

2018-09-11 Thread Jens Rehsack
Avoid coreutils conflicts with nice from other recipes, like busybox - even if that's not enabled by default. In situations, where coreutils is a dependency for -dev images and small busybox nice is available always, it avoids extra effort for coreutils for those users. Signed-off-by: Jens

Re: [OE-core] [PATCH] coreutils: add alternative target for nice

2018-09-11 Thread Martin Jansa
ALTERNATIVE_LINK_NAME[df.1] = "${mandir}/man1/nice.1" isn't correct On Tue, Sep 11, 2018 at 6:45 PM Jens Rehsack wrote: > Avoid coreutils conflicts with nice from other recipes, like > busybox - even if that's not enabled by default. > In situations, where coreutils is a dependency for -dev

Re: [OE-core] [PATCH] socat: Cache shift value for CRDLY, TABDLY and CSIZE

2018-09-11 Thread Andre McCurdy
On Tue, Sep 11, 2018 at 10:37 AM, Khem Raj wrote: > Match it to definitions in > arch//include/uapi/asm/termbits.h > > Signed-off-by: Khem Raj > --- > .../recipes-connectivity/socat/socat_1.7.3.2.bb | 17 +++-- > 1 file changed, 15 insertions(+), 2 deletions(-) > > diff --git

Re: [OE-core] [PATCH v2] python3{,-native}: update to 3.7.0

2018-09-11 Thread Alejandro Enedino Hernandez Samaniego
Hey Jens, On 09/10/2018 11:58 PM, Jens Rehsack wrote: Am 10.09.2018 um 23:33 schrieb Alejandro Enedino Hernandez Samaniego >: Hey Jens, As I explained before, when you create a manifest for python (target), it uses the native

[OE-core] [PATCH V2] socat: Cache shift value for CRDLY, TABDLY and CSIZE

2018-09-11 Thread Khem Raj
Match it to definitions in arch//include/uapi/asm/termbits.h Signed-off-by: Khem Raj --- v2: Fix the ppc64 settings to match ppc .../recipes-connectivity/socat/socat_1.7.3.2.bb | 17 +++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git

Re: [OE-core] [meta-oe][PATCH v2] minidlna: restore & fix recipe

2018-09-11 Thread Baptiste Durand
Thanks for the review, I will resend patch with changes according your comments. Le lun. 10 sept. 2018 à 19:04, Martin Jansa a écrit : > And don't use tag name in SRCREV, use git SHA, so that bitbake fetcher > doesn't need to access the git repository every time it parses the recipe. > > On

Re: [OE-core] [PATCH] socat: Cache shift value for CRDLY, TABDLY and CSIZE

2018-09-11 Thread Khem Raj
No, it isn't. infact it should be same as powerpc On Tue, Sep 11, 2018 at 10:48 AM Andre McCurdy wrote: > > On Tue, Sep 11, 2018 at 10:37 AM, Khem Raj wrote: > > Match it to definitions in > > arch//include/uapi/asm/termbits.h > > > > Signed-off-by: Khem Raj > > --- > >

Re: [OE-core] [PATCH] openssh: build support openssl 1.1

2018-09-11 Thread Hongxu Jia
On 2018年09月11日 18:39, Alexander Kanavin wrote: I'm afraid I have changed my mind, and I have to say no to this. It is *not* a backport, it is a very large patch that nobody understands, it will need to be rebased every time there is new openssh out, we cannot rely on Fedora doing this, as they