Re: [OE-core] [PATCH] util-linux: Split out zramctl in a specific package

2020-06-12 Thread Otavio Salvador
Em sex., 12 de jun. de 2020 às 21:26, Khem Raj escreveu: > > On Friday, June 12, 2020 1:45:30 PM PDT Otavio Salvador wrote: > > Signed-off-by: Otavio Salvador > > --- > > > > meta/recipes-core/util-linux/util-linux.inc | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/meta/recipes-c

Re: [OE-core] [PATCH 39/42] xinetd: 2.3.15 -> 2.3.15.4

2020-06-12 Thread Khem Raj
On Monday, June 8, 2020 12:46:56 AM PDT Alexander Kanavin wrote: > This is updating from an old version from abandoned upstream repo to > an actively maintained opensuse fork, hence all the changes and cleanups. > > License-Update: added suse copyrights > Signed-off-by: Alexander Kanavin > --- >

Re: [OE-core] [PATCH] dhcp: use included bind version

2020-06-12 Thread Khem Raj
On Wednesday, June 10, 2020 9:36:52 AM PDT Vyacheslav Yurkov wrote: > On 10.06.2020 17:05, Richard Purdie wrote: > > You seem to disable parallel make yet no mention of that in the log? > > Right, I forgot to mention that in the commit message. Building bind at > 'compile' stage breaks parallel ma

Re: [OE-core] Error while building image for 5.4.y on RPI4

2020-06-12 Thread Khem Raj
On Friday, June 12, 2020 12:02:56 AM PDT Pankaj Vinadrao Joshi wrote: > Hi, > i am trying to build an image for RPI4 for 5.4.y kernel but i am getting > following error , i > > Initialising tasks: 100% > |## > ###

Re: [OE-core] [PATCH] util-linux: Split out zramctl in a specific package

2020-06-12 Thread Khem Raj
On Friday, June 12, 2020 1:45:30 PM PDT Otavio Salvador wrote: > Signed-off-by: Otavio Salvador > --- > > meta/recipes-core/util-linux/util-linux.inc | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/meta/recipes-core/util-linux/util-linux.inc > b/meta/recipes-core/util-linux/util-linux.

[OE-core][PATCH] wic: Fix error message when reporting invalid offset

2020-06-12 Thread Joshua Watt
The error message was reporting the calculated offset instead of the current offset, which made it confusing. Signed-off-by: Joshua Watt --- scripts/lib/wic/plugins/imager/direct.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/wic/plugins/imager/direct.py b/sc

[OE-core] [PATCH v2] mtd-utils: Fix return value of ubiformat

2020-06-12 Thread Otavio Salvador
This changeset fixes a feature regression in ubiformat. Older versions of ubiformat, when invoked with a flash-image, would return 0 in the case no error was encountered. Upon upgrading to latest, it was discovered that ubiformat returned 255 even without encountering an error condition. This ch

Re: [OE-core] [PATCH] mtd-utils: Fix return value of ubiformat

2020-06-12 Thread Otavio Salvador
Em sex., 12 de jun. de 2020 às 18:25, Denys Dmytriyenko escreveu: > > On Fri, Jun 12, 2020 at 03:08:09PM -0300, Otavio Salvador wrote: > > This changeset fixes a feature regression in ubiformat. Older versions > > of ubiformat, when invoked with a flash-image, would return 0 in the > > case no er

Re: [OE-core] python3 recipe PGO tests

2020-06-12 Thread Alexander Kanavin
Hello Ryan, I did not write the pgo bits, I only preserved them (without testing) when the Python recipe was rewritten from scratch (by me) in order to bring some sanity to it, and make it possible again to update it to newer versions. The people you want to talk to are Anuj Mittal and Ross Burton

[OE-core] python3 recipe PGO tests

2020-06-12 Thread Ryan Rowe
Hello Alex, I’m investigating Python 3 performance issues on a Raspberry Pi Yocto build; I appreciate any insights you can provide into the problem. In my investigation, I noticed that PGO was disabled in all cases due to a small bug. I fixed it in a patch submitted to OE-Core (#139459

Re: [OE-core] [PATCH] mtd-utils: Fix return value of ubiformat

2020-06-12 Thread Denys Dmytriyenko
On Fri, Jun 12, 2020 at 03:08:09PM -0300, Otavio Salvador wrote: > This changeset fixes a feature regression in ubiformat. Older versions > of ubiformat, when invoked with a flash-image, would return 0 in the > case no error was encountered. Upon upgrading to latest, it was > discovered that ubif

Re: [OE-core] [dunfell-backport PATCH 3/9] libtirpc: upgrade 1.2.5 -> 1.2.6

2020-06-12 Thread Andreas Müller
On Fri, Jun 12, 2020 at 7:33 PM Otavio Salvador wrote: > > From: zhengruoqin > > 0001-xdr_float-do-not-include-bits-endian.h.patch > removed since it is included in 1.2.6 > > Signed-off-by: Zheng Ruoqin > Signed-off-by: Richard Purdie > (cherry picked from commit c940792e1492923036cae97010f9945

[OE-core] [PATCH] zlib: build and package minigzip

2020-06-12 Thread Sergio Prado
minigzip is a minimal implementation of the gzip utility that simulates gzip using the zlib compression library. Having a package with minigzip could be useful in some cases. Signed-off-by: Sergio Prado --- meta/recipes-core/zlib/zlib_1.2.11.bb | 15 ++- 1 file changed, 14 insertion

[OE-core] [PATCH] util-linux: Split out zramctl in a specific package

2020-06-12 Thread Otavio Salvador
Signed-off-by: Otavio Salvador --- meta/recipes-core/util-linux/util-linux.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-core/util-linux/util-linux.inc b/meta/recipes-core/util-linux/util-linux.inc index 532cceb935..e3ef558d7e 100644 --- a/meta/recipes-core/util-linux/uti

[OE-core] [PATCH] python3: fix PGO for non-reproducible biniaries

2020-06-12 Thread Ryan Rowe
When PGO was disabled by default by e53ebf29, a bug was introduced that prevented PGO from ever being enabled. At the time at which extra config is appended to PACKAGECONFIG_CONFARGS, PACKAGECONFIG_PGO remains unevaluated in PACKAGECONFIG_class-target, due to setting its value in an anonymous Pytho

[OE-core] [PATCH] mtd-utils: Fix return value of ubiformat

2020-06-12 Thread Otavio Salvador
This changeset fixes a feature regression in ubiformat. Older versions of ubiformat, when invoked with a flash-image, would return 0 in the case no error was encountered. Upon upgrading to latest, it was discovered that ubiformat returned 255 even without encountering an error condition. This ch

[OE-core][PATCH] sstatesig: Account for all dataCaches being passed

2020-06-12 Thread Joshua Watt
Bitbake now passes all the dataCaches to the taskhash API, so use this to correctly filter mcdepends. [YOCTO #13724] Signed-off-by: Joshua Watt --- meta/lib/oe/sstatesig.py | 79 +--- 1 file changed, 42 insertions(+), 37 deletions(-) diff --git a/meta/lib/oe

[OE-core] [dunfell-backport PATCH 8/9] go.bbclass: Add `-trimpath` to default build flags

2020-06-12 Thread Otavio Salvador
From: Otavio Salvador The `-trimpath` option is important for reproducible builds so full build paths and module paths are not embedded. Signed-off-by: Otavio Salvador Signed-off-by: Richard Purdie (cherry picked from commit e3df027b3697b6a92b417bba8d442a5bd15525fd) --- meta/classes/go.bbcla

[OE-core] [dunfell-backport PATCH 5/9] go-mod.bbclass: Add class for `go mod` support

2020-06-12 Thread Otavio Salvador
From: Otavio Salvador When using Go Modules, the the current working directory MUST be at or below the location of the 'go.mod' file when the go tool is used, and there is no way to tell it to look elsewhere. It will automatically look upwards for the file, but not downwards. To support this us

[OE-core] [dunfell-backport PATCH 4/9] dtc: update to 1.6.0

2020-06-12 Thread Otavio Salvador
From: Richard Leitner This also fixes issues with gcc 10's default change to "-fno-common". Signed-off-by: Richard Leitner Signed-off-by: Richard Purdie (cherry picked from commit 3acc1e5d5bce4e229801c9d66391e007390fb373) Signed-off-by: Otavio Salvador --- meta/recipes-kernel/dtc/{dtc_1.5.1

[OE-core] [dunfell-backport PATCH 2/9] libtirpc: remove extra "-fcommon" from CFLAGS

2020-06-12 Thread Otavio Salvador
From: Richard Leitner commit daed7eedba ("Avoid multiple-definiton with gcc -fno-common") of libtirpc fixed the -fno-common issues. Therefore it should be save to remove the extra "-fcommon" in CFLAGS. Signed-off-by: Richard Leitner Signed-off-by: Richard Purdie (cherry picked from commit 9e45

[OE-core] [dunfell-backport PATCH 7/9] go-dep: Avoid use of 'go mod' support

2020-06-12 Thread Otavio Salvador
From: Otavio Salvador dep utility must not use 'go mod' support, so we explicitly disable it. Signed-off-by: Otavio Salvador Signed-off-by: Richard Purdie (cherry picked from commit b34000ae3dd6e0a1d7fc332efb35c5da84cf2275) --- meta/recipes-devtools/go/go-dep_0.5.4.bb | 4 1 file change

[OE-core] [dunfell-backport PATCH 9/9] binutils: add patch to fix issues with gcc 10

2020-06-12 Thread Otavio Salvador
From: Richard Leitner gcc 10 introduced "-fno-common" as default. Therefore backport the according binutils patch to fix this issue. Signed-off-by: Richard Leitner Signed-off-by: Richard Purdie (cherry picked from commit fbeb572e1872cf64786d01d5c6408a6765f814ce) Signed-off-by: Otavio Salvador

[OE-core] [dunfell-backport PATCH 3/9] libtirpc: upgrade 1.2.5 -> 1.2.6

2020-06-12 Thread Otavio Salvador
From: zhengruoqin 0001-xdr_float-do-not-include-bits-endian.h.patch removed since it is included in 1.2.6 Signed-off-by: Zheng Ruoqin Signed-off-by: Richard Purdie (cherry picked from commit c940792e1492923036cae97010f9945e7ad43a32) Signed-off-by: Otavio Salvador --- ...r_float-do-not-inclu

[OE-core] [dunfell-backport PATCH 6/9] glide: Avoid use of 'go mod' support

2020-06-12 Thread Otavio Salvador
From: Otavio Salvador Glide utility must not use 'go mod' support, so we explicitly disable it. Signed-off-by: Otavio Salvador Signed-off-by: Richard Purdie (cherry picked from commit b5a4369ba606677285b0a89a78c040b38f57767f) --- meta/recipes-devtools/glide/glide_0.13.3.bb | 4 1 file c

[OE-core] [dunfell-backport PATCH 1/9] gdbm: add patch to fix link failure against gcc 10

2020-06-12 Thread Otavio Salvador
From: Richard Leitner This also makes appending "-fcommon" to CFLAGS obsolete and enables native builds with a host gcc v10. Signed-off-by: Richard Leitner Signed-off-by: Richard Purdie (cherry picked from commit 7717b35265e6ef8ef71a4eca4074294dfcc2110c) Signed-off-by: Otavio Salvador --- .

[OE-core] [PATCH] systemd: Sync systemd-serialgetty@.service with upstream

2020-06-12 Thread Otavio Salvador
The systemd upstream has been doing some improvements in the service which were not in sync, with the forked file. Mainly: - Use BindsTo to bind the service with the required serial device - Add of getty-pre.target as dependency so we can run things before getty@.service and serial-getty@.ser

[OE-core] Meta-security layer LTS statement

2020-06-12 Thread akuster
Hello all, As the  maintainer for meta-security layer, I will be aligning  with the LTS policy the Yocto Project has defined and the Dunfell branch of meta-security will have the same life cycle of 2 years. Best regards, Armin -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this g

Re: [OE-core] [master][zeus][PATCH] relocatable.bbclass: Avoid an exception if an empty pkgconfig dir exist

2020-06-12 Thread Peter Kjellerstedt
*ping* *ping* *ping* *ping* Ok, it was only two weeks since I pinged this the last time, but since I'm going on vacation in a week I thought I'd give it a shot before then. I am still waiting for any kind of reaction to this patch... //Peter > -Original Message- > From: openembedded-c

[OE-core][PATCH] buildtools-tarball: export OPENSSL_CONF in environment setup

2020-06-12 Thread Steve Sakoman
The autobuilder has been experiencing SSL: CERTIFICATE_VERIFY_FAILED errors during error report uploads when using buildtools due to looking for certs in /opt/poky Signed-off-by: Steve Sakoman --- meta/recipes-core/meta/buildtools-tarball.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/m

Re: [OE-Core][PATCH] recipetool: Fix list concatenation when using edit

2020-06-12 Thread Alex Kiernan
On Fri, Jun 12, 2020 at 2:38 PM Alex Kiernan via lists.openembedded.org wrote: > > If there are multiple appends, ensure we concatenate compatible things: > > Traceback (most recent call last): > File "/home/akiernan/poky/scripts/recipetool", line 111, in > ret = main() > File "/home/akie

[OE-Core][PATCH] recipetool: Fix list concatenation when using edit

2020-06-12 Thread Alex Kiernan
If there are multiple appends, ensure we concatenate compatible things: Traceback (most recent call last): File "/home/akiernan/poky/scripts/recipetool", line 111, in ret = main() File "/home/akiernan/poky/scripts/recipetool", line 100, in main ret = args.func(args) File "/home/akie

Re: [OE-core] kernel: update rpm failed for the vfat

2020-06-12 Thread Bruce Ashfield
On Fri, Jun 12, 2020 at 3:47 AM Xu, Yanfei wrote: > > Ping Bruce. Hmm, yes. I did miss the original message. gmail isn't as effective at highlighting messages that are to me (and also to the list) as I would like. > > On 6/9/20 6:32 PM, Xu, Yanfei wrote: > > Hi Bruce, > > > > I encountered an i

Re: [OE-core] Bootstrapping Go

2020-06-12 Thread Martin Jansa
I don't actively use go anywhere, so don't have strong opinion either way, but from this description it looks like ASSUME_PROVIDED should be supported as well, if someone manages his "perfectly good Go toolchain" in his containers/OSs used in OE builds, then replacing it with another prebuilt "perf

Re: [OE-core] Bootstrapping Go

2020-06-12 Thread Adrian Bunk
On Fri, Jun 12, 2020 at 01:41:41PM +0100, Ross Burton wrote: >... > With preferred provider set this can be used to build our own Go > toolchain. Yes, we're relying on a prebuilt binary but we're still > building the tools we actually use, so I don't see this as massively > different to using a ho

[OE-core] Bootstrapping Go

2020-06-12 Thread Ross Burton
Hi, Background: Go is written in Go. This obviously presents an interesting bootstrapping problem. The current build process is as follows: 1) Build Go 1.4 (from 2014) for native builds (go-native.bb). Go 1.4 was the latest release to be written in C, so this just needs a C compiler. 2) Using

[OE-core] [PATCH] diffoscope: upgrade 146 -> 147

2020-06-12 Thread Pierre-Jean Texier via lists.openembedded.org
This includes the following changes: * New features: - Add output from strings(1) to ELF binaries. It is intended this will expose expose build paths that are hidden somewhere within the objdump(1) output. (Closes: reproducible-builds/diffoscope#148) - Add basic zsh shell tab-completi

Re: [OE-core] [PATCH v2 1/2] selftest: git-submodule-test: New recipe for testing a gitsm SRC_URI

2020-06-12 Thread Paul Barker
On Fri, 12 Jun 2020 at 08:34, Richard Purdie wrote: > > Hi Paul, > > On Thu, 2020-06-04 at 18:33 +0100, Paul Barker wrote: > > Signed-off-by: Paul Barker > > --- > > .../recipes-test/git-submodule-test/git-submodule-test.bb | 8 > > 1 file changed, 8 insertions(+) > > create mode 10064

[OE-core] [PATCH] sysvinit-inittab: Add support for tty devices with 10 or more number.

2020-06-12 Thread Yuki Hoshino
"start_getty" support for tty devices with under 10 number. When SERIAL_CONSOLES has tty devices with 10 or more number, do not't start getty and output the following message. -- sh 1: unknown operand -- Signed-off-by: Yuki Hoshino --- meta/recipes-core/sysvinit/sysvinit-inittab/

Re: [OE-core] kernel: update rpm failed for the vfat

2020-06-12 Thread Xu, Yanfei
Ping Bruce. On 6/9/20 6:32 PM, Xu, Yanfei wrote: Hi Bruce, I encountered an issue that updating kernel rpm package will fail when the /boot dir was mount with vfat filesystem. The root cause is vfat don't support symlink. cut here-- error: unpacking of archive failed on file

Re: [OE-core] [PATCH v2 1/2] selftest: git-submodule-test: New recipe for testing a gitsm SRC_URI

2020-06-12 Thread Richard Purdie
Hi Paul, On Thu, 2020-06-04 at 18:33 +0100, Paul Barker wrote: > Signed-off-by: Paul Barker > --- > .../recipes-test/git-submodule-test/git-submodule-test.bb | 8 > 1 file changed, 8 insertions(+) > create mode 100644 > meta-selftest/recipes-test/git-submodule-test/git-submodule-test.

Re: [OE-core] Error while building image for 5.4.y on RPI4

2020-06-12 Thread Denys Dmytriyenko
I don't mean to be insensitive, but can this be sent to the proper mailing list, as there's no linux-raspberrypi in OE-Core. Mostly because this list is already high traffic and a bit of a structure would be appreciated. Thanks. -- Denys On Fri, Jun 12, 2020 at 12:02:56AM -0700, Pankaj Vinad

[OE-core] Error while building image for 5.4.y on RPI4

2020-06-12 Thread Pankaj Vinadrao Joshi
Hi, i am trying to build an image for RPI4 for 5.4.y kernel but i am getting following error , i Initialising tasks: 100% |###| Time: 0