Re: [OE-core] [PATCH v2] netbase: use git fetcher

2020-07-05 Thread Yu, Mingli
On 7/2/20 12:35 AM, Richard Purdie wrote: On Wed, 2020-07-01 at 10:05 +0800, Yu, Mingli wrote: On 7/1/20 4:08 AM, Richard Purdie wrote: On Mon, 2020-06-29 at 12:31 +0800, Yu, Mingli wrote: From: Mingli Yu Use git repo as the the previous URL only stores the latest source file and fails to

[OE-core] [PATCH 2/2] baremetal-helloworld: Use baremetal-image class to deploy the application

2020-07-05 Thread Alejandro Hernandez
Signed-off-by: Alejandro Hernandez Samaniego --- .../baremetal-helloworld_git.bb | 109 +++--- 1 file changed, 19 insertions(+), 90 deletions(-) diff --git a/meta-skeleton/recipes-baremetal/baremetal-examples/baremetal-helloworld_git.bb b/meta-skeleton/recipes-bareme

[OE-core] [PATCH 1/2] baremetal-image.bbclass: Create a class for baremetal applications or an RTOS

2020-07-05 Thread Alejandro Hernandez
Baremetal applications or an RTOS built with OpenEmbedded can share the same code to be built as an image, tested and packaged in case they can be updated as a firmware blob from Linux. This class creates the proper wiring to mimic OE Linux image creation and testing infrastructure, inheriting it

[OE-core] [PATCH] iso-codes: switch upstream branch master -> main

2020-07-05 Thread hongxu
Signed-off-by: Hongxu Jia --- meta/recipes-support/iso-codes/iso-codes_4.5.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-support/iso-codes/iso-codes_4.5.0.bb b/meta/recipes-support/iso-codes/iso-codes_4.5.0.bb index 6f9868ffea..9d02f5c794 100644 --- a/meta

Re: [OE-core] [zeus][PATCH 08/10] kernel.bbclass: Fix Module.symvers support

2020-07-05 Thread Anuj Mittal
Hi Adrian, On Sun, 2020-07-05 at 00:13 +0300, Adrian Bunk wrote: > Please drop this patch: > https://lists.openembedded.org/g/openembedded-core/message/140233 > Thank for reviewing the series. I believe this was resolved by https://lists.openembedded.org/g/openembedded-core/message/140237 ? T

[OE-core] [zeus][PATCH 00/10] zeus pull request - cover letter only

2020-07-05 Thread Anuj Mittal
Please merge these changes in zeus. Clean a-full on autobuilder except a bitbake-selftest failure fix for which has been merged. Thanks, Anuj The following changes since commit ee95a399285abbde84e0148ca957b59d65bcad0a: mesa: fix meson configure fix when 'dri' is excluded from PACKAGECONFIG (

[OE-core] [PATCH] bitbake.conf: fix whitespace issues

2020-07-05 Thread Konrad Weihmann
Signed-off-by: Konrad Weihmann --- meta/conf/bitbake.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 89717a7134..353caacef9 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -252,7 +252,7 @@ This

[OE-core] [PATCH] systemd: remove kernel-install from base pkg

2020-07-05 Thread Konrad Weihmann
as this is already packaged in kernel-install package, it shouldn't be part of the base package Signed-off-by: Konrad Weihmann --- meta/recipes-core/systemd/systemd_245.6.bb | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/recipes-core/systemd/systemd_245.6.bb b/meta/recipes-core/systemd

Re: [OE-core] [PATCH v2] kernel/yocto: fix search for defconfig from src_uri

2020-07-05 Thread Bruce Ashfield
On Sun, Jul 5, 2020 at 10:08 AM Richard Purdie wrote: > > On Fri, 2020-07-03 at 22:51 -0400, Bruce Ashfield wrote: > > On Wed, Jul 1, 2020 at 11:22 AM Bruce Ashfield via > > lists.openembedded.org > > wrote: > > > On Wed, Jul 1, 2020 at 10:58 AM Andrey Zhizhikin < > > > andre...@gmail.com> wrote:

Re: [OE-core][PATCH v4] classes/kernel: Use a copy of image for kernel*.rpm if fs doesn't support symlinks

2020-07-05 Thread Richard Purdie
On Fri, 2020-07-03 at 22:26 -0400, Bruce Ashfield wrote: > On Fri, Jul 3, 2020 at 9:56 AM wrote: > > From: Yanfei Xu > > > > Some filesystems don't support symlink, then you will get failure > > when > > you install or update the kernel rpm package. Now we use a copy of > > image for these files

Re: [OE-core] [zeus][PATCH 08/10] kernel.bbclass: Fix Module.symvers support

2020-07-05 Thread Richard Purdie
On Sun, 2020-07-05 at 00:13 +0300, Adrian Bunk wrote: > Please drop this patch: > https://lists.openembedded.org/g/openembedded-core/message/140233 Later in that thread Bruce did change his opinion although this is a tricky one... Cheers, Richard -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all m

Re: [OE-core] [PATCH v2] kernel/yocto: fix search for defconfig from src_uri

2020-07-05 Thread Richard Purdie
On Fri, 2020-07-03 at 22:51 -0400, Bruce Ashfield wrote: > On Wed, Jul 1, 2020 at 11:22 AM Bruce Ashfield via > lists.openembedded.org > wrote: > > On Wed, Jul 1, 2020 at 10:58 AM Andrey Zhizhikin < > > andre...@gmail.com> wrote: > > > Fetcher provides full paths to defconfig and scc files, which

[OE-core] [PATCH] kernel.bbclass: add gzip-native to do_deploy dependencies

2020-07-05 Thread Matt Madison
When a modules tarball is created during kernel_do_deploy, the tarball is compressed using gzip, but gzip-native is not a dependency so the build host's gzip is being used for this. Using gzip-native will, by default, use pigz instead of single-threaded gzip, making this task less of a bottleneck