Re: [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory

2023-05-07 Thread Peter Kjellerstedt
That is most certainly a good alternative. //Peter From: Martin Jansa Sent: den 8 maj 2023 00:20 To: Peter Kjellerstedt Cc: r...@ti.com; a...@ti.com; detheri...@ti.com; reat...@ti.com; de...@denix.org; alexandre.bell...@bootlin.com; openembedded-core@lists.openembedded.org Subject: Re: [OE

Re: [OE-core][PATCH V2] oe-buildenv-internal: remove path from previous project

2023-05-12 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Chen Qi via > lists.openembedded.org > Sent: den 12 maj 2023 05:16 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core][PATCH V2] oe-buildenv-internal: remove path from previous > project

Re: [OE-core][PATCH V2] oe-buildenv-internal: remove path from previous project

2023-05-15 Thread Peter Kjellerstedt
> -Original Message- > From: ChenQi > Sent: den 15 maj 2023 06:53 > To: Peter Kjellerstedt ; > openembedded-core@lists.openembedded.org > Subject: Re: [OE-core][PATCH V2] oe-buildenv-internal: remove path from > previous project > > Hi Peter, > > Tha

[OE-core] [PATCHv2] glib-2.0: Avoid having g_futex_simple() inadvertently modify errno

2023-05-22 Thread Peter Kjellerstedt
From: Peter Kjellerstedt If both __NR_futex and __NR_futex_time64 are defined, g_futex_simple() will first call futex_time64(). If that fails with ENOSYS, then futex_time() is called instead. However, errno was not saved and restored in this case, which would result in g_futex_simple() returning

[OE-core] [PATCHv2 1/2] musl: Correct SRC_URI

2023-05-22 Thread Peter Kjellerstedt
When the protocol used to fetch the Git repository was changed from "git" to "https" in commit 139102a73d (recipes: Default to https git protocol where possible), the URI was not updated to match. Signed-off-by: Peter Kjellerstedt --- meta/recipes-core/musl/musl_git.bb | 2 +

[OE-core] [PATCHv2 2/2] xf86-video-intel: Use the HTTPS protocol to fetch the Git repositories

2023-05-22 Thread Peter Kjellerstedt
This matches the change in commit 139102a73d (recipes: Default to https git protocol where possible), which did this for most recipes. Signed-off-by: Peter Kjellerstedt --- meta/recipes-graphics/xorg-driver/xf86-video-intel_git.bb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff

Re: [OE-core] [PATCHv2 1/2] musl: Correct SRC_URI

2023-05-22 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Peter Kjellerstedt > Sent: den 23 maj 2023 03:22 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATCHv2 1/2] musl: Correct SRC_URI Meh

[OE-core] [PATCH] insane.bbclass: Allow the warning about virtual/ to be disabled

2024-01-21 Thread Peter Kjellerstedt
Commit f673d3d239799fb1ab50f4aa5d44187666aa0cd7 introduced a warning for virtual/ being used in RPROVIDES and RDEPENDS. Make it possible to disable the warning by removing "virtual-slash from WARN_QA. Signed-off-by: Peter Kjellerstedt --- meta/classes-global/insane.bbclass | 13 +++

Re: [OE-core] [PATCH] insane.bbclass: Allow the warning about virtual/ to be disabled

2024-01-22 Thread Peter Kjellerstedt
> -Original Message- > From: Richard Purdie > Sent: den 22 januari 2024 15:02 > To: Peter Kjellerstedt ; openembedded- > c...@lists.openembedded.org > Subject: Re: [OE-core] [PATCH] insane.bbclass: Allow the warning about > virtual/ to be disabled > > On Mon

Re: [OE-core] [PATCH 1/2] create-spdx-2.2: Correct the default value of SPDX_NAMESPACE_PREFIX

2024-02-15 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Alexandre Belloni via > lists.openembedded.org > Sent: den 15 februari 2024 10:26 > To: belouargamoha...@gmail.com > Cc: openembedded-core@lists.openembedded.org; > f.lahoud...@t

[OE-core] [PATCH] devtool: modify: Correct appending of type=git-dependency to URIs

2024-02-15 Thread Peter Kjellerstedt
A missing space when using :append would lead to run-on URIs if there was no whitespace at the end of the original SRC_URI. Signed-off-by: Peter Kjellerstedt --- scripts/lib/devtool/standard.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lib/devtool

Re: [OE-core] [PATCH 0/6] devtool: ide: Improve VSCode support

2024-02-15 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Richard Purdie > Sent: den 15 februari 2024 18:11 > To: Enguerrand de Ribaucourt ; > openembedded-core@lists.openembedded.org > Cc: adrian.freiho...@gmail.com; ross.bur...@arm.com; > mohammed.r...@savoi

[OE-core] [PATCH 2/7] devtool: _extract_source: Correct the removal of an old backup directory

2024-02-16 Thread Peter Kjellerstedt
Also correct the comment describing what is happening. Signed-off-by: Peter Kjellerstedt --- scripts/lib/devtool/standard.py | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index dd9232da1c

[OE-core] [PATCH 6/7] patch.bbclass: Make use of oe.patch.GitApplyTree.commitIgnored()

2024-02-16 Thread Peter Kjellerstedt
This makes use of the oe.patch.GitApplyTree.commitIgnored() function to create commits that shall be ignored by `devtool finish`. Signed-off-by: Peter Kjellerstedt --- meta/classes-global/patch.bbclass | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meta/classes-global

[OE-core] [PATCH 4/7] lib/oe/patch: Add GitApplyTree.commitIgnored()

2024-02-16 Thread Peter Kjellerstedt
This function can be used to create a commit that devtool will ignore when creating/updating the patches. Signed-off-by: Peter Kjellerstedt --- meta/lib/oe/patch.py | 10 ++ 1 file changed, 10 insertions(+) diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py index 70cdb1d9c0

[OE-core] [PATCH 3/7] lib/oe/patch: Make extractPatches() not extract ignored commits

2024-02-16 Thread Peter Kjellerstedt
n a recipe. This also adds a new test for oe-selftest that verifies that there are no patches generated from ignored commits. Signed-off-by: Peter Kjellerstedt --- .../0055-Add-cstdint-for-uintXX_t-types.patch | 38 +++ ...099-cmake-Pass-PROBE_NAME-via-CFLAGS.patch | 29 + .../sys

[OE-core] [PATCH 5/7] devtool: Make use of oe.patch.GitApplyTree.commitIgnored()

2024-02-16 Thread Peter Kjellerstedt
This makes use of the oe.patch.GitApplyTree.commitIgnored() function to create commits that shall be ignored by `devtool finish`. Signed-off-by: Peter Kjellerstedt --- scripts/lib/devtool/__init__.py | 4 +--- scripts/lib/devtool/standard.py | 6 +- 2 files changed, 2 insertions(+), 8

[OE-core] [PATCH 7/7] lib/oe/patch: Use git notes to store the filenames for the patches

2024-02-16 Thread Peter Kjellerstedt
ts is also changed to use Git notes to avoid having different methods to store similar information. Signed-off-by: Peter Kjellerstedt --- meta/lib/oe/patch.py| 105 +++- meta/lib/oeqa/selftest/cases/devtool.py | 9 +- scripts/lib/devtool/standard.py

[OE-core] [PATCH 1/7] devtool: standard: Add some missing whitespace

2024-02-16 Thread Peter Kjellerstedt
Makes it a little bit easier when reading the code. Signed-off-by: Peter Kjellerstedt --- scripts/lib/devtool/standard.py | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index

Re: [OE-core] [PATCH V4] systemd: fix a dead link under /var/log

2024-02-18 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Changqing Li > Sent: den 18 februari 2024 06:41 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATCH V4] systemd: fix a dead link under /var/log > > From: Changqing Li > > Commit

Re: [OE-core] [PATCH 7/7] lib/oe/patch: Use git notes to store the filenames for the patches

2024-02-18 Thread Peter Kjellerstedt
> -Original Message- > From: Richard Purdie > Sent: den 17 februari 2024 13:34 > To: Peter Kjellerstedt ; openembedded- > c...@lists.openembedded.org > Subject: Re: [OE-core] [PATCH 7/7] lib/oe/patch: Use git notes to store > the filenames for the patches > >

[OE-core] [PATCHv2 1/5] lib/oe/patch: Make extractPatches() not extract ignored commits

2024-02-18 Thread Peter Kjellerstedt
n a recipe. This also adds a new test for oe-selftest that verifies that there are no patches generated from ignored commits. Signed-off-by: Peter Kjellerstedt --- PATCHv2: Add EXCLUDE_FROM_WORLD = "1" to the sysdig-selftest recipe. .../0055-Add-cstdint-for-uintXX_t-types.patch | 38 +

[OE-core] [PATCHv2 3/5] devtool: Make use of oe.patch.GitApplyTree.commitIgnored()

2024-02-18 Thread Peter Kjellerstedt
This makes use of the oe.patch.GitApplyTree.commitIgnored() function to create commits that shall be ignored by `devtool finish`. Signed-off-by: Peter Kjellerstedt --- PATCHv2: No changes. scripts/lib/devtool/__init__.py | 4 +--- scripts/lib/devtool/standard.py | 6 +- 2 files changed, 2

[OE-core] [PATCHv2 2/5] lib/oe/patch: Add GitApplyTree.commitIgnored()

2024-02-18 Thread Peter Kjellerstedt
This function can be used to create a commit that devtool will ignore when creating/updating the patches. Signed-off-by: Peter Kjellerstedt --- PATCHv2: No changes. meta/lib/oe/patch.py | 10 ++ 1 file changed, 10 insertions(+) diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py

[OE-core] [PATCHv2 4/5] patch.bbclass: Make use of oe.patch.GitApplyTree.commitIgnored()

2024-02-18 Thread Peter Kjellerstedt
This makes use of the oe.patch.GitApplyTree.commitIgnored() function to create commits that shall be ignored by `devtool finish`. Signed-off-by: Peter Kjellerstedt --- PATCHv2: No changes. meta/classes-global/patch.bbclass | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a

[OE-core] [PATCHv2 5/5] lib/oe/patch: Use git notes to store the filenames for the patches

2024-02-18 Thread Peter Kjellerstedt
ts is also changed to use Git notes to avoid having different methods to store similar information. Signed-off-by: Peter Kjellerstedt --- PATCHv2: * Remove the --fixed-value option from calls to git config. It was added in Git version 2.30, but OE Core currently only requires Git version 1.8.3

Re: [OE-core] [PATCHv2 3/5] devtool: Make use of oe.patch.GitApplyTree.commitIgnored()

2024-02-19 Thread Peter Kjellerstedt
> -Original Message- > From: Ross Burton > Sent: den 19 februari 2024 13:54 > To: Peter Kjellerstedt > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCHv2 3/5] devtool: Make use of > oe.patch.GitApplyTree.commitIgnored() > > On 1

Re: [OE-core] [PATCHv2 5/5] lib/oe/patch: Use git notes to store the filenames for the patches

2024-02-19 Thread Peter Kjellerstedt
> -Original Message- > From: Ross Burton > Sent: den 19 februari 2024 13:56 > To: Peter Kjellerstedt > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCHv2 5/5] lib/oe/patch: Use git notes to store > the filenames for the patches > &g

Re: [OE-core] [PATCH 1/3] base: Switch UNPACKDIR to a subdir of WORKDIR

2024-05-22 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Richard Purdie > Sent: den 22 maj 2024 11:28 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATCH 1/3] base: Switch UNPACKDIR to a subdir of WORKDIR > > Change do_unpack to unpack f

Re: [PATCH] [OE-core][scarthgap] rust: remove unnecessary git signature

2024-05-27 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Alexander Kanavin > Sent: den 27 maj 2024 18:46 > To: 이재규 > Cc: jaekyu@lge.com; openembedded-core@lists.openembedded.org > Subject: Re: [PATCH] [OE-core][scarthgap] rust: re

Re: [OE-core] [PATCH] tzdata: Add tzdata.zi to tzdata-core package

2024-05-30 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Simone Weiß > Sent: den 30 maj 2024 01:13 > To: openembedded-core@lists.openembedded.org > Cc: Simone Weiß > Subject: [OE-core] [PATCH] tzdata: Add tzdata.zi to tzdata-core package > > From: Simone Weiß

Re: [OE-core] [PATCH] base/bitbake.conf: use default assigment for UNPACKDIR

2024-05-31 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Richard Purdie > Sent: den 31 maj 2024 12:57 > To: samuli.pii...@gmail.com; openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH] base/bitbake.conf: use default assigment for > UNPACK

[OE-core] [scarthgap][PATCH 1/3] devtool: modify: Catch git submodule error for go code

2024-06-11 Thread Peter Kjellerstedt
from commit fe242408af40dd1f6e47d9b2b232bdc76756c80a) Signed-off-by: Peter Kjellerstedt --- scripts/lib/devtool/standard.py | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index 10d0cd3b7c..2beb058de8 100644

[OE-core] [scarthgap][PATCH 3/3] base-files: profile: fix error sh: 1: unknown operand

2024-06-11 Thread Peter Kjellerstedt
From: Felix Nilsson Handle errors when SHLVL isn't set. Signed-off-by: Felix Nilsson Signed-off-by: Richard Purdie (cherry picked from commit 5df53fcfe3b70a5312fced3fcc1ba6290f2ee794) Signed-off-by: Peter Kjellerstedt --- meta/recipes-core/base-files/base-files/profile | 2 +- 1

[OE-core] [scarthgap][PATCH 2/3] oeqa/selftest/devtool: add test for modifying recipes using go.bbclass

2024-06-11 Thread Peter Kjellerstedt
fab0c737b95b8d0c0bbf58336bc308776c956406) Signed-off-by: Peter Kjellerstedt --- meta/lib/oeqa/selftest/cases/devtool.py | 19 +++ 1 file changed, 19 insertions(+) diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py index 51949e3c93

Re: [OE-core] Patchtest results for [PATCH v2 1/2] ccache: 4.9.1 -> 4.10

2024-06-12 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Robert Yang via > lists.openembedded.org > Sent: den 12 juni 2024 07:54 > To: patcht...@automation.yoctoproject.org > Cc: openembedded-core@lists.openembedded.org > Subject: Re:

Re: [OE-core] [PATCH] expect-native: fix build with gcc-14

2024-06-13 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Richard Purdie > Sent: den 13 juni 2024 10:40 > To: changqing...@windriver.com; openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH] expect-native: fix build with gcc-14 > > On Thu,

Re: [OE-core] [PATCH] expect-native: fix build with gcc-14

2024-06-13 Thread Peter Kjellerstedt
> -Original Message- > From: Richard Purdie > Sent: den 13 juni 2024 23:59 > To: Peter Kjellerstedt ; > changqing...@windriver.com; openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH] expect-native: fix build with gcc-14 > > On Thu, 2024-06-

[OE-core] [PATCH 1/2] systemd: Correct the indentation in do_install()

2024-07-17 Thread Peter Kjellerstedt
There was a mix of using tabs and spaces for indentation. Signed-off-by: Peter Kjellerstedt --- meta/recipes-core/systemd/systemd_256.bb | 27 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/meta/recipes-core/systemd/systemd_256.bb b/meta/recipes-core

[OE-core] [PATCH 2/2] systemd: Move the MIME file to a separate package

2024-07-17 Thread Peter Kjellerstedt
The systemd-mime package is added as a recommendation for systemd so that it is installed by default, but can be excluded, e.g., via BAD_RECOMMENDATIONS. Excluding it avoids pulling in the MIME database for products that have no use for it. Signed-off-by: Peter Kjellerstedt --- meta/recipes

Re: [OE-core] [PATCH] archiver.bbclass: fix BB_GENERATE_MIRROR_TARBALLS checking

2024-08-08 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Enrico Jörns > Sent: den 8 augusti 2024 13:04 > To: openembedded-core@lists.openembedded.org > Cc: yo...@pengutronix.de > Subject: [OE-core] [PATCH] archiver.bbclass: fix BB_GENERATE_MIRROR_TARBALLS > ch

Re: [OE-core] [PATCH v2 1/2] buildhistory: fix package output folder creation

2024-08-08 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Richard Purdie > Sent: den 7 augusti 2024 18:44 > To: alexandre.bell...@bootlin.com; > pedro.silva.ferre...@criticaltechworks.com > Cc: openembedded-core@lists.openembedded.org >

[OE-core] [PATCH] license_image.bbclass: Rename license-incompatible to license-exception

2024-08-12 Thread Peter Kjellerstedt
INCOMPATIBLE_LICENSE_EXCEPTIONS variable). To better match how it is used and to distinguish it from incompatible-license, rename it to license-exception. Signed-off-by: Peter Kjellerstedt --- meta/classes-global/insane.bbclass | 2 +- meta/classes-recipe/license_image.bbclass| 2

Re: [OE-core][PATCH v2] python3: skip readline limited history tests

2024-08-14 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Chen Qi via > lists.openembedded.org > Sent: den 14 augusti 2024 17:02 > To: Trevor Gamblin ; openembedded- > c...@lists.openembedded.org; Khem Raj > Cc: alex.kana...@gmail.com;

Re: [OE-core] [PATCH v4] util-linux: Add PACKAGECONFIG option to mitigate rootfs remount error

2024-08-19 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Niko Mauno via > lists.openembedded.org > Sent: den 19 augusti 2024 12:10 > To: openembedded-core@lists.openembedded.org > Cc: Niko Mauno > Subject: [OE-core] [PATCH v4] util-linux: Add PACKAGECONFIG op

[OE-core] [PATCH 1/2] systemd.bbclass: Clean up empty parent directories

2024-08-20 Thread Peter Kjellerstedt
the cleanup and would be packaged. Simplify rm_systemd_unitdir() and rm_sysvinit_initddir() by rewriting them in shell, and use rmdir -p to remove all empty parent directories. Signed-off-by: Peter Kjellerstedt --- meta/classes-recipe/systemd.bbclass | 46 + 1 file

[OE-core] [PATCH 2/2] oeqa/selftest/bbclasses: Add tests for systemd and update-rc.d interaction

2024-08-20 Thread Peter Kjellerstedt
These tests verify that the correct files are left behind when systemd is inherited and depending on whether the systemd and/or sysvinit distro features are enabled. Signed-off-by: Peter Kjellerstedt --- .../bbclasses/systemd-and-sysvinit.bb | 15 +++ .../recipes-test/bbclasses/systemd

[OE-core] [PATCHv2 1/2] systemd.bbclass: Clean up empty parent directories

2024-08-20 Thread Peter Kjellerstedt
the cleanup and would be packaged. Simplify rm_systemd_unitdir() and rm_sysvinit_initddir() by rewriting them in shell, and use rmdir -p to remove all empty parent directories. Signed-off-by: Peter Kjellerstedt --- PATCHv2: No changes. meta/classes-recipe/systemd.bbclass | 46

[OE-core] [PATCHv2 2/2] oeqa/selftest/bbclasses: Add tests for systemd and update-rc.d interaction

2024-08-20 Thread Peter Kjellerstedt
These tests verify that the correct files are left behind when systemd is inherited and depending on whether the systemd and/or sysvinit distro features are enabled. Signed-off-by: Peter Kjellerstedt --- PATCHv2: Change LICENSE to MIT and add EXCLUDE_FROM_WORLD to the test recipes

[OE-core] [PATCH] util-linux: Set the license for util-linux-fcntl-lock to MIT

2024-04-01 Thread Peter Kjellerstedt
This avoids problems if BSD-4-Clause is in INCOMPATIBLE_LICENSE since util-linux-fcntl-lock is now a dependency of run-postinsts. Signed-off-by: Peter Kjellerstedt --- meta/recipes-core/util-linux/util-linux.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-core/util-linux

Re: [OE-core] New mailing list for layer patches

2024-04-02 Thread Peter Kjellerstedt
> -Original Message- > From: yo...@lists.yoctoproject.org On > Behalf Of Ross Burton > Sent: den 28 mars 2024 15:37 > To: openembedded-architecture architect...@lists.openembedded.org>; Yocto-mailing-list > ; OE-core c...@lists.openembedded.org> > Subject: [yocto] New mailing list for la

Re: [OE-core] [PATCH] util-linux: Set the license for util-linux-fcntl-lock to MIT

2024-04-04 Thread Peter Kjellerstedt
> -Original Message- > From: Alexandre Belloni > Sent: den 4 april 2024 01:45 > To: Peter Kjellerstedt > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH] util-linux: Set the license for > util-linux-fcntl-lock to MIT > > Hello, &

Re: [OE-core] [PATCH] devtool: standard: throws appropriate error if source is in detached HEAD

2024-04-09 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Julien Stephan > Sent: den 9 april 2024 09:19 > To: openembedded-core@lists.openembedded.org > Cc: Julien Stephan > Subject: [OE-core] [PATCH] devtool: standard: throws appropriate error if > source is

Re: [OE-core] [PATCH v2] devtool: standard: throws appropriate error if source is in detached HEAD

2024-04-10 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Julien Stephan > Sent: den 10 april 2024 09:07 > To: openembedded-core@lists.openembedded.org > Cc: Julien Stephan > Subject: [OE-core] [PATCH v2] devtool: standard: throws appropriate error if > source

Re: [OE-core] [PATCH v2] devtool: standard: throws appropriate error if source is in detached HEAD

2024-04-12 Thread Peter Kjellerstedt
> -Original Message- > From: Julien Stephan > Sent: den 11 april 2024 16:20 > To: Peter Kjellerstedt > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH v2] devtool: standard: throws appropriate error > if source is in detached HEAD >

Re: [OE-core] [PATCH] Replaced :append with += in multiple recipe files under meta layer.

2024-04-12 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of K Sanjay Nayak > Sent: den 12 april 2024 08:06 > To: openembedded-core@lists.openembedded.org > Cc: K Sanjay Nayak > Subject: [OE-core] [PATCH] Replaced :append with += in multiple recipe files > under

Re: [OE-core][PATCH 2/3] kbd: remove non-free Agafari fonts

2024-04-13 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Richard Purdie > Sent: den 13 april 2024 12:47 > To: peter.ma...@siemens.com; Khem Raj > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core][PATCH 2/3] kbd: re

Re: [OE-core] [PATCH 05/10] base: Switch UNPACKDIR to a subdir of WORKDIR

2024-05-15 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Richard Purdie > Sent: den 15 maj 2024 13:56 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATCH 05/10] base: Switch UNPACKDIR to a subdir of WORKDIR > > Change do_unpack to unpack

Re: [OE-core] [PATCH] devtool: modify: Catch git submodule error for go code

2024-05-15 Thread Peter Kjellerstedt
Steve, please cherry-pick this to Scarthgap. //Peter > -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Ola x Nilsson > Sent: den 14 maj 2024 11:56 > To: openembedded-core@lists.openembedded.org > Cc: Ola x Nilsson > Subject: [OE-core] [PATCH] devtool:

Re: [OE-core] [PATCH v4] ipk/rootfs: run sanity test of multilib in parallel

2024-05-16 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Seungkyun Kim > Sent: den 16 maj 2024 02:12 > To: openembedded-core@lists.openembedded.org > Cc: seungkyun.kim > Subject: [OE-core] [PATCH v4] ipk/rootfs: run sanity test of multilib in > parallel > >

[OE-core] [PATCH] base.bbclass: Do not fail during parsing if ${SRCREV} does not exist

2023-08-25 Thread Peter Kjellerstedt
ls-remote output for git.yoctoproject.org/psplash Signed-off-by: Peter Kjellerstedt --- meta/classes-global/base.bbclass | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/meta/classes-global/base.bbclass b/meta/classes-global/base.bbclass index 7c774d250f..fb55a6eee9 10064

Re: [OE-core] [PATCH v3 01/13] vscode: add minimal configuration

2023-08-26 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Adrian Freihofer > Sent: den 26 augusti 2023 00:26 > To: openembedded-core@lists.openembedded.org > Cc: Adrian Freihofer > Subject: [OE-core] [PATCH v3 01/13] vscode: add minimal configuration > > It is

Re: [OE-core] [meta-oe][PATCH] volatile-binds: Calculate the name of the /var/lib service

2023-08-27 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Stéphane Veyret > Sent: den 27 augusti 2023 18:49 > To: openembedded-core@lists.openembedded.org > Cc: Stéphane Veyret > Subject: [OE-core] [meta-oe][PATCH] volatile-binds: Calculate the name of the > /

Re: [oe][OE-core][Patch 0/1] Revert "bin_package.bbclass: Inhibit the default dependencies"

2023-08-27 Thread Peter Kjellerstedt
> -Original Message- > From: Max Krummenacher > Sent: den 27 augusti 2023 10:10 > To: openembedded-core@lists.openembedded.org; Peter Kjellerstedt > > Cc: Max Krummenacher ; Randolph Sapp > > Subject: [oe][OE-core][Patch 0/1] Revert "bin_package.b

Re: [oe][OE-core][Patch 0/1] Revert "bin_package.bbclass: Inhibit the default dependencies"

2023-08-31 Thread Peter Kjellerstedt
> -Original Message- > From: Ryan Eatmon > Sent: den 28 augusti 2023 19:10 > To: Peter Kjellerstedt ; Max Krummenacher > ; openembedded-core@lists.openembedded.org > Cc: Max Krummenacher ; Randolph Sapp > > Subject: Re: [oe][OE-core][Patch 0/1] Revert "bin_p

Re: [OE-core][PATCH] kernel.bbclass: Add file exist checks around removes

2023-08-31 Thread Peter Kjellerstedt
For what it’s worth, I would also go with rm -f. Also, have you checked so that the files have not just been moved/renamed? I.e., are they produced in some other location where they should now also be removed from? //Peter From: openembedded-core@lists.openembedded.org On Behalf Of Frederic

Re: [OE-core] [PATCH] base.bbclass: Do not fail during parsing if ${SRCREV} does not exist

2023-09-01 Thread Peter Kjellerstedt
> -Original Message- > From: Richard Purdie > Sent: den 30 augusti 2023 11:04 > To: Peter Kjellerstedt ; > openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH] base.bbclass: Do not fail during parsing if > ${SRCREV} does not exist > >

Re: [OE-core][PATCH] gcc-runtime: remove bashism

2023-09-02 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Peter Marko via > lists.openembedded.org > Sent: den 2 september 2023 11:54 > To: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core][PATCH] gcc-runtime: remove bashism > > Gentle ping. > T

Re: [OE-core] [Openembedded-architecture] Changes needing documentation - a new procedure

2023-09-02 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-architect...@lists.openembedded.org architect...@lists.openembedded.org> On Behalf Of Richard Purdie > Sent: den 2 september 2023 09:20 > To: openembedded-core ; > openembedded-architecture architect...@lists.openembedded.org> > Cc: Michael Opdena

Re: [OE-core] [PATCH] classes: Drop ';' delimiter from ROOTFS/IMAGE*COMMAND variables

2023-09-08 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Richard Purdie > Sent: den 8 september 2023 00:11 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATCH] classes: Drop ';' delimiter from > ROOTFS/IMAGE*COMMAND variables > > Origin

[OE-core] [PATCH 1/2] libsoup-2.4: Only specify --cross-file when building for target

2023-09-14 Thread Peter Kjellerstedt
The soup.cross file is only created when building for target so only tell meson to read it when it exists. This allows libsoup-2.4-native to be built again. Signed-off-by: Peter Kjellerstedt --- meta/recipes-support/libsoup/libsoup-2.4_2.74.3.bb | 2 +- 1 file changed, 1 insertion(+), 1

[OE-core] [PATCH 2/2] libsoup: Only specify --cross-file when building for target

2023-09-14 Thread Peter Kjellerstedt
The soup.cross file is only created when building for target so only tell meson to read it when it exists. This allows libsoup-native to be built again. Signed-off-by: Peter Kjellerstedt --- meta/recipes-support/libsoup/libsoup_3.4.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion

[OE-core] [PATCH] oeqa/selftest/context: Rely on bitbake-getvar --value to only return value

2023-09-22 Thread Peter Kjellerstedt
Before, "bitbake-getvar --value " would include log output together with the value. This was handled by piping the output to "tail -1". Now, "bitbake-getvar --value" will no longer output any logs so the piping to "tail" is no longer needed. Signed-off-by:

Re: [OE-core][PATCH] oe-find-native-sysroot: avoid warning message messing things up

2023-09-26 Thread Peter Kjellerstedt
NAK This is no longer needed since commit 6b7883533 (bitbake-getvar: Make --value imply –quiet) landed in bitbake. //Peter From: openembedded-core@lists.openembedded.org On Behalf Of Jose Quaresma Sent: den 26 september 2023 12:21 To: qi.c...@windriver.com Cc: openembedded-core@lists.openembe

Re: [OE-core][PATCH v2] gcc: depend on zstd

2023-09-27 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Sean Nyekjaer > Sent: den 27 september 2023 14:58 > To: openembedded-core@lists.openembedded.org > Cc: Sean Nyekjaer ; kas...@krinvent.dk > Subject: [OE-core][PATCH v2] gcc: depend on zstd > > Add zstd L

Re: [OE-core] [warrior][PATCH 0/8] Backport relevant changes from Zeus

2019-11-03 Thread Peter Kjellerstedt
> -Original Message- > From: akuster808 > Sent: den 27 oktober 2019 09:20 > To: Peter Kjellerstedt ; openembedded- > c...@lists.openembedded.org > Subject: Re: [OE-core] [warrior][PATCH 0/8] Backport relevant changes > from Zeus > > Peter, > > > On

Re: [OE-core] [PATCH] insane: file-rdeps: Readability only

2019-11-03 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org core-boun...@lists.openembedded.org> On Behalf Of Douglas Royds via > Openembedded-core > Sent: den 4 november 2019 02:17 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATCH] insane: file-r

Re: [OE-core] [warrior][PATCH 0/8] Backport relevant changes from Zeus

2019-11-05 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org boun...@lists.openembedded.org> On Behalf Of Peter Kjellerstedt > Sent: den 3 november 2019 16:18 > To: akuster808 ; openembedded- > c...@lists.openembedded.org > Subject: Re: [OE-core

[OE-core] [warrior][PATCHv2 0/9] Backport relevant changes from Zeus

2019-11-05 Thread Peter Kjellerstedt
): devtool: finish: Keep patches ordered when updating bbappend Peter Kjellerstedt (8): meson: Backport patch to handle strings in cross file args meson.bbclass: Remove the MESON_*_ARGS variables nativesdk-meson: Remove some unused variables devtool: Avoid failure for recipes with S == WORKDIR and

[OE-core] [warrior][PATCHv2 6/9] tzdata: Correct the packaging of /etc/localtime and /etc/timezone

2019-11-05 Thread Peter Kjellerstedt
From: Peter Kjellerstedt During restructuring of the packaging in 2af4d6eb (tzdata: Install everything by default), these two files remained in the tzdata package, which is supposed to be empty. Move them to tzdata-core where they belong. Also simplify the definition of CONFFILES_tzdata-core

[OE-core] [warrior][PATCHv2 4/9] devtool: Avoid failure for recipes with S == WORKDIR and no local files

2019-11-05 Thread Peter Kjellerstedt
From: Peter Kjellerstedt When extracting the sources for a recipe that has S == WORKDIR and no local files in the SRC_URI (which, e.g., can happen for a recipe with a URI that has the unpack=false attribute), the extraction fails with the following backtrace: Traceback (most recent call last

[OE-core] [warrior][PATCHv2 7/9] devtool: finish: Keep patches ordered when updating bbappend

2019-11-05 Thread Peter Kjellerstedt
From: Niclas Svensson The _get_patchset_revs() function returns the patches in an OrderedDict to keep them ordered. However, this information was lost when the patches were added to the bbappend file. Signed-off-by: Niclas Svensson Signed-off-by: Peter Kjellerstedt Signed-off-by: Richard

[OE-core] [warrior][PATCHv2 1/9] meson: Backport patch to handle strings in cross file args

2019-11-05 Thread Peter Kjellerstedt
This allows _args and _link_args properties, e.g., c_link_args, in meson.cross to be specified as either a string or a list. Signed-off-by: Peter Kjellerstedt --- meta/recipes-devtools/meson/meson.inc | 1 + ...ings-in-cross-file-args.-Closes-4671.patch | 87 +++ 2

[OE-core] [warrior][PATCHv2 8/9] devtool: finish: Add suppport for the --no-clean option

2019-11-05 Thread Peter Kjellerstedt
From: Peter Kjellerstedt This works just like the already existing --no-clean option to the `devtool reset` command. Signed-off-by: Peter Kjellerstedt Signed-off-by: Richard Purdie --- scripts/lib/devtool/standard.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a

[OE-core] [warrior][PATCHv2 3/9] nativesdk-meson: Remove some unused variables

2019-11-05 Thread Peter Kjellerstedt
From: Peter Kjellerstedt Signed-off-by: Peter Kjellerstedt Signed-off-by: Richard Purdie --- meta/recipes-devtools/meson/nativesdk-meson_0.49.2.bb | 5 - 1 file changed, 5 deletions(-) diff --git a/meta/recipes-devtools/meson/nativesdk-meson_0.49.2.bb b/meta/recipes-devtools/meson

[OE-core] [warrior][PATCHv2 9/9] lib/oe/lsb: Make sure the distro ID is always lowercased

2019-11-05 Thread Peter Kjellerstedt
From: Peter Kjellerstedt In commit 8689e561 (lib/oe/lsb: attempt to ensure consistent distro id regardless of source), the distro ID returned by oe.lsb.distro_identifier() was lowercased, but only if a release version is also present. This changes the code to always lowercase the distro ID

[OE-core] [warrior][PATCHv2 5/9] package_rpm.bbclass: Remove a misleading bb.note()

2019-11-05 Thread Peter Kjellerstedt
From: Peter Kjellerstedt It should have been removed in 3db9d865 (classes/package_rpm.bbclass: Enhance diagnostic messages) when it was split in two new notes. Also change the casing of two other notes to align them with the other notes. Signed-off-by: Peter Kjellerstedt Signed-off-by

[OE-core] [warrior][PATCHv2 2/9] meson.bbclass: Remove the MESON_*_ARGS variables

2019-11-05 Thread Peter Kjellerstedt
From: Peter Kjellerstedt The options in ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS} are already passed via ${CC}/${CXX} and there is no reason to pass them a second time. Thus we can remove MESON_TOOLCHAIN_ARGS. And when it is removed, the other MESON_*_ARGS variables revert to the standard CFLAGS

Re: [OE-core] ✗ patchtest: failure for Backport relevant changes from Zeus (rev2)

2019-11-11 Thread Peter Kjellerstedt
> -Original Message- > From: Patchwork > Sent: den 5 november 2019 23:32 > To: Peter Kjellerstedt > Cc: openembedded-core@lists.openembedded.org > Subject: ✗ patchtest: failure for Backport relevant changes from Zeus > (rev2) > > == Series Details == >

Re: [OE-core] [PATCH] pseudo: Add statx support to fix fedora30 issues

2019-11-12 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org boun...@lists.openembedded.org> On Behalf Of Richard Purdie > Sent: den 7 november 2019 21:53 > To: Seebs > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH] pseudo: Add statx support

[OE-core] [master][zeus][PATCH 1/2] sysstat: Correct our systemd unit file

2019-11-12 Thread Peter Kjellerstedt
ervice: systemd[4698]: sysstat.service: Failed at step EXEC spawning /usr/lib/sa/sa1: No such file or directory Signed-off-by: Peter Kjellerstedt --- meta/recipes-extended/sysstat/sysstat.inc | 4 ++-- meta/recipes-extended/sysstat/sysstat/sysstat.service | 2 +- 2 files changed, 3 ins

[OE-core] [master][zeus][PATCH 2/2] sysstat: Correct when to use the package provided systemd unit files

2019-11-12 Thread Peter Kjellerstedt
There have been a number of changes back and forth as to when and how to use the systemd unit files provided by the package. The correct condition is actually that both cron and systemd need to be enabled for them to be installed. Signed-off-by: Peter Kjellerstedt --- meta/recipes-extended

Re: [OE-core] [PATCH 12/13] systat: upstream version check is working again

2019-11-18 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org boun...@lists.openembedded.org> On Behalf Of Alexander Kanavin > Sent: den 18 november 2019 14:08 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATCH 12/13] systat: upstream version check i

Re: [OE-core] [PATCH 1/2] devtool/standard.py: Allow recipe to disable menuconfig logic

2019-11-21 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org boun...@lists.openembedded.org> On Behalf Of Tom Hochstein > Sent: den 20 november 2019 20:26 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATCH 1/2] devtool/standard.py: Allow recipe to >

[OE-core] [PATCH 4/4] libpng: Remove duplicate license information

2019-11-25 Thread Peter Kjellerstedt
The LICENSE file contains all the license information so there is no need to also include it from the png.h file (and additionally some lines were left out from the latter). License-Update: Remove duplicate license information Signed-off-by: Peter Kjellerstedt --- meta/recipes-multimedia/libpng

[OE-core] [PATCH 3/4] opkg: Trim the text part used for the license file checksum

2019-11-25 Thread Peter Kjellerstedt
This avoids including irrelevant information when calculating the license checksum. License-Update: Trim the text part used for the license file checksum Signed-off-by: Peter Kjellerstedt --- meta/recipes-devtools/opkg/opkg_0.4.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[OE-core] [PATCH 2/4] alsa-utils: Trim the text part used for the license file checksum

2019-11-25 Thread Peter Kjellerstedt
This avoids including irrelevant information when calculating the license checksum. License-Update: Trim the text part used for the license file checksum Signed-off-by: Peter Kjellerstedt --- meta/recipes-multimedia/alsa/alsa-utils_1.1.9.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion

[OE-core] [PATCH 1/4] alsa-lib: Trim the text part used for the license file checksum

2019-11-25 Thread Peter Kjellerstedt
This avoids including irrelevant information when calculating the license checksum. License-Update: Trim the text part used for the license file checksum Signed-off-by: Peter Kjellerstedt --- meta/recipes-multimedia/alsa/alsa-lib_1.1.9.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion

[OE-core] [master][zeus][PATCH 1/2] libtirpc: Simplify the installation of symlinks for legacy headers

2019-12-05 Thread Peter Kjellerstedt
This also corrects the symbolic links installed in /usr/include/rpcsvc. Signed-off-by: Peter Kjellerstedt --- .../libtirpc/libtirpc_1.1.4.bb| 27 +-- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb

[OE-core] [master][zeus][PATCH 2/2] libtirpc: Make it easy to disable the installation of legacy headers

2019-12-05 Thread Peter Kjellerstedt
provides the header files. To remedy this, make it easy to disable the installation of the legacy headers by not setting the legacy-headers PACKAGECONFIG. Signed-off-by: Peter Kjellerstedt --- .../libtirpc/libtirpc_1.1.4.bb| 23 +++ 1 file changed, 14 insertions(+), 9

<    1   2   3   4   5   6   7   8   9   10   >