[OE-core] [PATCH v2] python3-cython: Check for files before editing

2021-03-06 Thread Khem Raj
If using debug-without-src policy then usr/src/debug won't exist, therefore the function will fail due to missing files, adding a check for files to exist before editing them fixes it. Signed-off-by: Khem Raj --- v2: Check if file exists instead of checking for debug split style makes it more

[OE-core] [PATCH] ltp: Fix another determinism issue

2021-03-06 Thread Richard Purdie
After the other fixes there remained occasional problems. Fix another makefile sorting problem affecting the disktest binary. Signed-off-by: Richard Purdie --- .../ltp/ltp/determinism2.patch| 24 +++ meta/recipes-extended/ltp/ltp_20210121.bb | 5 ++-- 2 files

Re: [OE-core] [RFC] distrodata.py: Test to track recipes without HOMEPAGE or DESCRIPTION

2021-03-06 Thread Dorinda
Alright, Thank you for the feedback. the currently valid edition (https://www.openembedded.org/wiki/Styleguide) of the the style guide claims that DESCRIPTION defaults to SUMMARY. So I personally would rather check that SUMMARY != DESCRIPTION in case DESCRIPTION is set - by default DESCRIPTION isn

Re: [OE-core] [RFC] distrodata.py: Test to track recipes without HOMEPAGE or DESCRIPTION

2021-03-06 Thread Konrad Weihmann
some nitpick below On 06.03.21 21:53, Dorinda wrote: [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/lib/oeqa/selftest/cases/distrodata.py | 34 ++ 1 file changed, 34 insertions(+) diff --git a/meta/lib/oeqa/selftest/cases/distrodata.py b/meta/lib/oeqa/selftest/c

[OE-core] [RFC] distrodata.py: Test to track recipes without HOMEPAGE or DESCRIPTION

2021-03-06 Thread Dorinda
This test is to keep track of recipes that do not have a HOMEPAGE or DESCRIPTION, with exceptions to recipes whose SRC_URI are not linked to external sources. [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/lib/oeqa/selftest/cases/distrodata.py | 34 ++ 1 file changed

Re: [OE-core] [PATCH] vala: upgrade 0.50.3 -> 0.50.4

2021-03-06 Thread Khem Raj
I have sent a fix to dconf-editor https://lists.openembedded.org/g/openembedded-devel/topic/meta_gnome_patch/81130660?p=,,,20,0,0,0::recentpostdate%2Fsticky,,,20,2,0,81130660 On Sat, Mar 6, 2021 at 7:47 AM Khem Raj wrote: > > this break dconf-editor in meta-openembedded > > https://errors.yoctopr

Re: [OE-core] [PATCH] vala: upgrade 0.50.3 -> 0.50.4

2021-03-06 Thread Khem Raj
this break dconf-editor in meta-openembedded https://errors.yoctoproject.org/Errors/Details/573677/ On Wed, Mar 3, 2021 at 4:33 PM Wang Mingyu wrote: > > Signed-off-by: Wang Mingyu > --- > meta/recipes-devtools/vala/{vala_0.50.3.bb => vala_0.50.4.bb} | 2 +- > 1 file changed, 1 insertion(+), 1

[OE-core] [PATCH] python3-setuptools: update to 54.1.0

2021-03-06 Thread Oleksandr Kravchuk
Signed-off-by: Oleksandr Kravchuk --- ...ython3-setuptools_53.0.0.bb => python3-setuptools_54.1.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-setuptools_53.0.0.bb => python3-setuptools_54.1.0.bb} (94%) diff --git a/meta/recipes-devtool

[OE-core] [PATCH] meson: Correctly set uid/gid of installed files

2021-03-06 Thread Peter Kjellerstedt
In 0.57.0, the uid and gid arguments passed to os.chown() when using install_mode were accidentally swapped, causing files to end up with incorrect owner/group if the owner and group are not the same. Signed-off-by: Peter Kjellerstedt --- meta/recipes-devtools/meson/meson.inc | 1 + ...

[oe-core][RFC 1/3] u-boot: Move definitions to common locations

2021-03-06 Thread Klaus Heinrich Kiwi
Move some definitions from u-boot.inc into uboot-config.bbclass and similarly from kernel-fitimage.bbclass into uboot-sign.bbclass, so that they can be useful when signing the U-boot proper fitimage, for a verified-boot SPL. Signed-off-by: Klaus Heinrich Kiwi --- meta/classes/kernel-fitimage.bbc

[oe-core][RFC 3/3] u-boot: Use a different Key for SPL signing

2021-03-06 Thread Klaus Heinrich Kiwi
Duplicate the variables governing u-boot signing so that we can have a different set of keys/parameters signing the SPL. Signed-off-by: Klaus Heinrich Kiwi --- meta/classes/uboot-config.bbclass | 2 ++ meta/classes/uboot-sign.bbclass | 55 --- 2 files changed, 46 i

[oe-core][RFC 2/3] u-boot: Add infrastructure to SPL verified boot

2021-03-06 Thread Klaus Heinrich Kiwi
Add the necessary infrastructure to create a U-boot proper fitimage, sign it (using the same keys as the kernel-fitimage), and put the public key in the SPL binary so that verified SPL boot can be accomplished. Signed-off-by: Klaus Heinrich Kiwi --- meta/classes/kernel-fitimage.bbclass | 7 +

[oe-core][RFC 0/3] u-boot: Support SPL Verified Boot

2021-03-06 Thread Klaus Heinrich Kiwi
This patch series aims at extending U-Boot's verified boot support to also include SPL signing. The proposal is to some of the infrastructure (variables, functions) used to sign the Kernel FitImage to more common locations, and then essentially duplicate the method currently used to sign the Kerne