[OE-core] [PATCH v2] uboot-config: Fix devtool modify

2025-02-05 Thread Tom Hochstein via lists.openembedded.org
proposed change does. ``` - https://lists.yoctoproject.org/g/yocto/topic/109254298#msg64152] Fixes [YOCTO #15603] Suggested-by: Marcus Flyckt Signed-off-by: Tom Hochstein --- meta/classes-recipe/uboot-config.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/clas

Re: [OE-core] Patchtest results for [PATCH] uboot-config: Fix devtool modify

2025-02-05 Thread Tom Hochstein via lists.openembedded.org
On 2/5/2025 12:16 PM, patcht...@automation.yoctoproject.org wrote: [You don't often get email from patcht...@automation.yoctoproject.org. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ] Thank you for your submission. Patchtest identified one or more issues with th

[OE-core] [PATCH] uboot-config: Fix devtool modify

2025-02-05 Thread Tom Hochstein via lists.openembedded.org
proposed change does. ``` - https://lists.yoctoproject.org/g/yocto/topic/109254298#msg64152] Suggested-by: Marcus Flyckt Signed-off-by: Tom Hochstein --- meta/classes-recipe/uboot-config.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes-recipe/uboot-

Re: [OE-core] [PATCH v4 5/5] mesa: Fix missing GLES3 headers in SDK sysroot

2025-01-06 Thread Tom Hochstein via lists.openembedded.org
I saw that patches 1-4 are accepted but not this one. Do I need to re- submit? Tom On 12/23/2024 2:04 PM, Tom Hochstein via lists.openembedded.org wrote: Building weston with core-image-weston SDK fails: ``` ../libweston/renderer-gl/gl-shader-config-color-transformation.c:29:10: fatal error

[OE-core] [PATCH v4 5/5] mesa: Fix missing GLES3 headers in SDK sysroot

2024-12-23 Thread Tom Hochstein via lists.openembedded.org
.so.2, which is packaged in libgles2-mesa. However, the headers are split between libgles2-mesa-dev and libgles3-mesa-dev, which is why the GLES3 headers end up missing in the SDK sysroot. Add a dependency so the GLES3 headers are properly associated with the GLES3 implementation. Signed-off-by: Tom

[OE-core] [PATCH v4 4/5] weston: Disable unused tests build

2024-12-23 Thread Tom Hochstein via lists.openembedded.org
specific requirement for the xwayland test build. Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/weston_14.0.1.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-graphics/wayland/weston_14.0.1.bb b/meta/recipes-graphics/wayland/weston_14.0.1.bb

[OE-core] [PATCH v4 3/5] weston: Fix wayland-protocols dependency

2024-12-23 Thread Tom Hochstein via lists.openembedded.org
to wayland-protocols-dev. [1] https://github.com/openembedded/openembedded-core/commit/5de187aee675a78fe59620a3fb64a5da5ae662aa Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/weston_14.0.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes

[OE-core] [PATCH v4 1/5] pkgconfig: Add pkg-config-native to SDK

2024-12-23 Thread Tom Hochstein via lists.openembedded.org
protocol/meson.build:1:14: ERROR: Dependency lookup for wayland-scanner with method 'pkgconfig' failed: Pkg-config for machine build machine not found. Giving up. ``` Fix the problem by extending the pkg-config-native wrapper install to class-nativesdk. Signed-off-by: Tom Hochstein --- m

[OE-core] [PATCH v4 2/5] wayland-protocols: Remove inoperative packaging override

2024-12-23 Thread Tom Hochstein via lists.openembedded.org
/5de187aee675a78fe59620a3fb64a5da5ae662aa Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/wayland-protocols_1.38.bb | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-graphics/wayland/wayland-protocols_1.38.bb b/meta/recipes-graphics/wayland/wayland-protocols_1.38.bb

Re: [OE-core] [PATCH v3 5/5] mesa: Fix missing GLES3 headers in SDK sysroot

2024-12-23 Thread Tom Hochstein via lists.openembedded.org
On 12/23/2024 5:28 AM, Richard Purdie wrote: +# GLES2 and GLES3 implementations are packaged in a single library in libgles2-mesa. +# Add a dependency so the GLES3 dev package is associated with its implementation. +RDEPENDS:libgles2-mesa-dev += "libgles3-mesa-dev" + RDEPENDS:libopencl-mesa

Re: [OE-core] [PATCH 4/4] weston: Add xcb-util-cursor dependency

2024-12-22 Thread Tom Hochstein via lists.openembedded.org
On 12/22/2024 2:28 PM, Randy MacLeod wrote: Better still is to install the tests along with dependencies only for the ptests as is done in many recipes, for example wayland:   install: https://git.openembedded.org/openembedded-core/tree/meta/recipes-graphics/wayland/wayland_1.23.1.bb?h=maste

Re: [OE-core] [PATCH v3 5/5] mesa: Fix missing GLES3 headers in SDK sysroot

2024-12-22 Thread Tom Hochstein via lists.openembedded.org
v3 is the same as v2 but adds this patch. Tom On 12/22/2024 10:22 AM, Tom Hochstein via lists.openembedded.org wrote: Building weston with core-image-weston SDK fails: ``` ../libweston/renderer-gl/gl-shader-config-color-transformation.c:29:10: fatal error: GLES3/gl3.h: No such file or

[OE-core] [PATCH v3 4/5] weston: Disable unused tests build

2024-12-22 Thread Tom Hochstein via lists.openembedded.org
specific requirement for the xwayland test build. Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/weston_14.0.1.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-graphics/wayland/weston_14.0.1.bb b/meta/recipes-graphics/wayland/weston_14.0.1.bb

[OE-core] [PATCH v3 5/5] mesa: Fix missing GLES3 headers in SDK sysroot

2024-12-22 Thread Tom Hochstein via lists.openembedded.org
.so.2, which is packaged in libgles2-mesa. However, the headers are split between libgles2-mesa-dev and libgles3-mesa-dev, which is why the GLES3 headers end up missing in the SDK sysroot. Add a dependency so the GLES3 headers are properly associated with the GLES3 implementation. Signed-off-by: Tom

[OE-core] [PATCH v3 3/5] weston: Fix wayland-protocols dependency

2024-12-22 Thread Tom Hochstein via lists.openembedded.org
to wayland-protocols-dev. [1] https://github.com/openembedded/openembedded-core/commit/5de187aee675a78fe59620a3fb64a5da5ae662aa Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/weston_14.0.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes

[OE-core] [PATCH v3 1/5] pkgconfig: Add pkg-config-native to SDK

2024-12-22 Thread Tom Hochstein via lists.openembedded.org
protocol/meson.build:1:14: ERROR: Dependency lookup for wayland-scanner with method 'pkgconfig' failed: Pkg-config for machine build machine not found. Giving up. ``` Fix the problem by extending the pkg-config-native wrapper install to class-nativesdk. Signed-off-by: Tom Hochstein --- m

[OE-core] [PATCH v3 2/5] wayland-protocols: Remove inoperative packaging override

2024-12-22 Thread Tom Hochstein via lists.openembedded.org
/5de187aee675a78fe59620a3fb64a5da5ae662aa Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/wayland-protocols_1.38.bb | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-graphics/wayland/wayland-protocols_1.38.bb b/meta/recipes-graphics/wayland/wayland-protocols_1.38.bb

[OE-core] [PATCH v2 4/4] weston: Disable unused tests build

2024-12-21 Thread Tom Hochstein via lists.openembedded.org
specific requirement for the xwayland test build. Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/weston_14.0.1.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-graphics/wayland/weston_14.0.1.bb b/meta/recipes-graphics/wayland/weston_14.0.1.bb

[OE-core] [PATCH v2 1/4] pkgconfig: Add pkg-config-native to SDK

2024-12-21 Thread Tom Hochstein via lists.openembedded.org
protocol/meson.build:1:14: ERROR: Dependency lookup for wayland-scanner with method 'pkgconfig' failed: Pkg-config for machine build machine not found. Giving up. ``` Fix the problem by extending the pkg-config-native wrapper install to class-nativesdk. Signed-off-by: Tom Hochstein --- m

[OE-core] [PATCH v2 3/4] weston: Fix wayland-protocols dependency

2024-12-21 Thread Tom Hochstein via lists.openembedded.org
to wayland-protocols-dev. [1] https://github.com/openembedded/openembedded-core/commit/5de187aee675a78fe59620a3fb64a5da5ae662aa Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/weston_14.0.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes

[OE-core] [PATCH v2 2/4] wayland-protocols: Remove inoperative packaging override

2024-12-21 Thread Tom Hochstein via lists.openembedded.org
/5de187aee675a78fe59620a3fb64a5da5ae662aa Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/wayland-protocols_1.38.bb | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-graphics/wayland/wayland-protocols_1.38.bb b/meta/recipes-graphics/wayland/wayland-protocols_1.38.bb

Re: [OE-core] [PATCH 4/4] weston: Add xcb-util-cursor dependency

2024-12-21 Thread Tom Hochstein via lists.openembedded.org
On 12/21/2024 4:33 PM, Khem Raj via lists.openembedded.org wrote: On Sat, Dec 21, 2024 at 1:45 PM Tom Hochstein <mailto:tom.hochst...@oss.nxp.com>> wrote: On 12/21/2024 2:10 PM, Khem Raj wrote: > > Tests sometimes do require additional packages and at times

Re: [OE-core] [PATCH 4/4] weston: Add xcb-util-cursor dependency

2024-12-21 Thread Tom Hochstein via lists.openembedded.org
On 12/21/2024 2:10 PM, Khem Raj wrote: Tests sometimes do require additional packages and at times development headers and libs on target for different reasons and these dependencies may not be needed for normal functioning of the package. I would suggest to add them into image as rdeps (if they

Re: [OE-core] [PATCH 4/4] weston: Add xcb-util-cursor dependency

2024-12-21 Thread Tom Hochstein via lists.openembedded.org
On 12/20/2024 3:42 AM, Alexander Kanavin wrote: On Fri, 20 Dec 2024 at 00:13, Tom Hochstein wrote: Good question, I actually made a guess that xcb-util-cursor is missing from the rootfs because nothing actually links to it, so Yocto doesn't automatically add it to the runtime. Addi

Re: [OE-core] [PATCH 4/4] weston: Add xcb-util-cursor dependency

2024-12-19 Thread Tom Hochstein via lists.openembedded.org
On 12/19/2024 4:41 PM, Alexander Kanavin wrote: On Thu, 19 Dec 2024 at 23:22, Tom Hochstein via lists.openembedded.org wrote: Building weston with core-image-weston SDK fails: ``` Run-time dependency xcb-cursor found: NO (tried pkgconfig and cmake) tests/meson.build:357:2: ERROR: Problem

[OE-core] [PATCH 4/4] weston: Add xcb-util-cursor dependency

2024-12-19 Thread Tom Hochstein via lists.openembedded.org
. Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/weston_14.0.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-graphics/wayland/weston_14.0.1.bb b/meta/recipes-graphics/wayland/weston_14.0.1.bb index 4cb0ca4d5f..bcdd77bf67 100644 --- a/meta/recipes

[OE-core] [PATCH 3/4] weston: Fix wayland-protocols dependency

2024-12-19 Thread Tom Hochstein via lists.openembedded.org
to wayland-protocols-dev. [1] https://github.com/openembedded/openembedded-core/commit/5de187aee675a78fe59620a3fb64a5da5ae662aa Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/weston_14.0.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes

[OE-core] [PATCH 1/4] pkgconfig: Add pkg-config-native to SDK

2024-12-19 Thread Tom Hochstein via lists.openembedded.org
protocol/meson.build:1:14: ERROR: Dependency lookup for wayland-scanner with method 'pkgconfig' failed: Pkg-config for machine build machine not found. Giving up. ``` Fix the problem by extending the pkg-config-native wrapper install to class-nativesdk. Signed-off-by: Tom Hochstein --- m

[OE-core] [PATCH 2/4] wayland-protocols: Remove inoperative packaging override

2024-12-19 Thread Tom Hochstein via lists.openembedded.org
/5de187aee675a78fe59620a3fb64a5da5ae662aa Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/wayland-protocols_1.38.bb | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-graphics/wayland/wayland-protocols_1.38.bb b/meta/recipes-graphics/wayland/wayland-protocols_1.38.bb

[OE-core] [PATCH] weston: Add missing runtime dependency on freerdp

2024-10-18 Thread Tom Hochstein
With rdp enabled, nothing from freerdp is installed in the rootfs, and rdp is not usable. It seems there is no actual build time dependency other than the meson check itself, so add an explicit runtime dependency. Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/weston_13.0.3.bb

[OE-core] [PATCH v3] time64.inc: Simplify GLIBC_64BIT_TIME_FLAGS usage

2024-07-25 Thread Tom Hochstein
variable to capture the value needed for the 32-bit special case, including the space. Signed-off-by: Tom Hochstein --- meta/conf/distro/include/time64.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/conf/distro/include/time64.inc b/meta/conf/distro/inclu

[OE-core] [PATCH v2] time64.inc: Simplify GLIBC_64BIT_TIME_FLAGS usage

2024-07-24 Thread Tom Hochstein
ndard usage requirement with a different design that uses the += operator and moves the arch override. Signed-off-by: Tom Hochstein --- meta/conf/distro/include/time64.inc | 17 +++-- 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/meta/conf/distro/include/time64.i

Re: [OE-core] [PATCH] time64.inc: Simplify GLIBC_64BIT_TIME_FLAGS usage

2024-07-24 Thread Tom Hochstein
On 7/24/2024 12:20 PM, Alexander Kanavin wrote: On Wed, 24 Jul 2024 at 19:10, Tom Hochstein via lists.openembedded.org wrote: -GLIBC_64BIT_TIME_FLAGS = " -D_TIME_BITS=64 -D_FILE_OFFSET_BITS=64" +TARGET_CC_ARCH += "${GLIBC_64BIT_TIME_FLAGS}" # Only needed for some

Re: [OE-core] [PATCH] time64.inc: Simplify GLIBC_64BIT_TIME_FLAGS usage

2024-07-24 Thread Tom Hochstein
On 7/24/2024 12:20 PM, Alexander Kanavin wrote: On Wed, 24 Jul 2024 at 19:10, Tom Hochstein via lists.openembedded.org wrote: -GLIBC_64BIT_TIME_FLAGS = " -D_TIME_BITS=64 -D_FILE_OFFSET_BITS=64" +TARGET_CC_ARCH += "${GLIBC_64BIT_TIME_FLAGS}" # Only needed for some

[OE-core] [PATCH] time64.inc: Simplify GLIBC_64BIT_TIME_FLAGS usage

2024-07-24 Thread Tom Hochstein
ndard usage requirement with a different design that uses the += operator and moves the arch override. Signed-off-by: Tom Hochstein --- meta/conf/distro/include/time64.inc | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/meta/conf/distro/include/time64.inc b/m

[OE-core] [PATCH v2] toolchain-shar-relocate.sh: Add check for missing command 'file'

2024-03-21 Thread Tom Hochstein
'file' is required by the relocation script, please install it first. Abort! ``` Signed-off-by: Tom Hochstein --- meta/files/toolchain-shar-relocate.sh | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/meta/files/toolchain-shar-relocate.sh b/meta/

[OE-core] [[PATCH v2]] toolchain-shar-relocate.sh: Add check for missing command 'file'

2024-03-21 Thread Tom Hochstein
'file' is required by the relocation script, please install it first. Abort! ``` Signed-off-by: Tom Hochstein --- meta/files/toolchain-shar-relocate.sh | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/meta/files/toolchain-shar-relocate.sh b/meta/

Re: [OE-core] [PATCH] toolchain-shar-relocate.sh: Add check for missing command 'file'

2024-03-21 Thread Tom Hochstein
Thanks Alexandre, On 3/21/2024 10:19 AM, Alexandre Belloni wrote: Hello Tom, On 16/03/2024 12:35:58-0500, Tom Hochstein wrote: On a machine without the file command, the SDK install fails with a cryptic error message. ``` xargs: file: No such file or directory sed: no input files Failed to

[OE-core] [PATCH] toolchain-shar-relocate.sh: Add check for missing command 'file'

2024-03-16 Thread Tom Hochstein
'file' is required by the relocation script, please install it first. Abort! ``` Signed-off-by: Tom Hochstein --- meta/files/toolchain-shar-relocate.sh | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/meta/files/toolchain-shar-relocate.sh b/meta/

[OE-core] [PATCH v3] bmaptool: Add bmap-tools runtime alias for compatibility

2024-03-07 Thread Tom Hochstein
The rename of bmap-tools to bmaptool creates an incompatibility that will break package feeds. Restore package feed compatibility by adding a bmap-tools runtime alias. Acked-by: Otavio Salvador Signed-off-by: Tom Hochstein --- meta/recipes-support/bmaptool/bmaptool_git.bb | 4 1 file

[OE-core] [PATCH v2] bmaptool: Add bmap-tools runtime alias for compatibility

2024-03-07 Thread Tom Hochstein
The rename of bmap-tools to bmaptool creates an incompatibility that will break package feeds. Restore compatibility by adding bmap-tools as a runtime alias. Acked-by: Otavio Salvador Signed-off-by: Tom Hochstein --- meta/recipes-support/bmaptool/bmaptool_git.bb | 5 + 1 file changed, 5

[OE-core] [PATCH] bmaptool: Add bmap-tools alias for compatibility

2024-03-05 Thread Tom Hochstein
The rename of bmap-tools to bmaptool creates an incompatibility for pre-scarthgap layers. Restore compatibility by adding bmap-tools as an alias. Acked-by: Otavio Salvador Signed-off-by: Tom Hochstein --- meta/recipes-support/bmaptool/bmaptool_git.bb | 8 1 file changed, 8 insertions

[OE-core] [PATCH v2] linux-firmware: add firmware files for NXP BT chipsets

2023-09-05 Thread Tom Hochstein
. The above commit message is copied from the source commit message: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/commit/nxp?id=1f82dd25c3ea59b6bed80ee685d860f0c5f19875 Signed-off-by: Tom Hochstein --- .../linux-firmware/linux-firmware_20230804.bb | 50

Re: [OE-core] [PATCH] linux-firmware: add firmware files for NXP BT chipsets

2023-09-05 Thread Tom Hochstein
On Tue, Aug 29, 2023 at 05:08 AM, Tom Hochstein wrote: > > On Fri, Aug 25, 2023 at 07:37 AM, Tom Hochstein wrote: > >> Please hold off on this. The -common design is not working correctly and >> is causing those firmware packages to be registered as a runtime >> dep

Re: [OE-core] [PATCH] linux-firmware: add firmware files for NXP BT chipsets

2023-08-29 Thread Tom Hochstein
On Fri, Aug 25, 2023 at 07:37 AM, Tom Hochstein wrote: > > Please hold off on this. The -common design is not working correctly and > is causing those firmware packages to be registered as a runtime > dependency of the main package. Actually, the -common design is working fine, ther

Re: [OE-core] [PATCH] linux-firmware: add firmware files for NXP BT chipsets

2023-08-25 Thread Tom Hochstein
Please hold off on this. The -common design is not working correctly and is causing those firmware packages to be registered as a runtime dependency of the main package. Tom -Original Message- From: openembedded-core@lists.openembedded.org On Behalf Of Tom Hochstein via

[OE-core] [PATCH] linux-firmware: add firmware files for NXP BT chipsets

2023-08-24 Thread Tom Hochstein
. The above commit message is copied from the source commit message: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/commit/nxp?id=1f82dd25c3ea59b6bed80ee685d860f0c5f19875 Signed-off-by: Tom Hochstein --- .../linux-firmware/linux-firmware_20230625.bb | 50

[OE-core] [PATCH] weston: Cleanup and fix x11 and xwayland dependencies

2023-06-22 Thread Tom Hochstein
which was not found. Or, you can use '-Dxwayland=false'. ``` Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/weston_11.0.1.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-graphics/wayland/weston_11.0.1.bb b/meta/recipes-graphi

[OE-core] [PATCH] piglit: Add missing glslang dependencies

2023-05-16 Thread Tom Hochstein
returncode: 1 out: err: glslangValidator: No such file or directory glslangValidator failed ``` Signed-off-by: Tom Hochstein --- meta/recipes-graphics/piglit/piglit_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b

[OE-core][PATCH v2 2/2] oeqa/sdk: Improve Meson test

2023-03-03 Thread Tom Hochstein
-by: Tom Hochstein --- meta/lib/oeqa/sdk/cases/buildepoxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/sdk/cases/buildepoxy.py b/meta/lib/oeqa/sdk/cases/buildepoxy.py index ee515be188..147ee3e0ee 100644 --- a/meta/lib/oeqa/sdk/cases/buildepoxy.py +++ b/meta

[OE-core][PATCH v2 1/2] meson: Fix wrapper handling of implicit setup command

2023-03-03 Thread Tom Hochstein
t/fsl-imx-internal-xwayland/6.1-langdale/sysroots/x86_64-pokysdk-linux/usr/share/meson/aarch64-poky-linux-meson.cross --native-file=/opt/fsl-imx-internal-xwayland/6.1-langdale/sysroots/x86_64-pokysdk-linux/usr/share/meson/meson.native " The Meson build system Version: 0.63.3 ``` Signed-off-by: T

Re: [OE-core] [PATCH] meson: Fix wrapper handling of implicit setup command

2023-03-03 Thread Tom Hochstein
On Fri, Mar 3, 2023 at 11:08 AM, Alexander Kanavin wrote: > > This should have been caught by meta/lib/oeqa/sdk/cases/buildepoxy.py > - why wasn't it? Does the test need to be fixed? The simple test case doesn't have the problematic syntax. Should I add this to the patch? diff --git a/meta/lib

[OE-core] [PATCH] meson: Fix wrapper handling of implicit setup command

2023-03-03 Thread Tom Hochstein
t/fsl-imx-internal-xwayland/6.1-langdale/sysroots/x86_64-pokysdk-linux/usr/share/meson/aarch64-poky-linux-meson.cross --native-file=/opt/fsl-imx-internal-xwayland/6.1-langdale/sysroots/x86_64-pokysdk-linux/usr/share/meson/meson.native " The Meson build system Version: 0.63.3 ``` Signed-off-by: T

Re: [OE-core] [DISTRO|MACHINE]_FEATURES_BACKFILL_CONSIDERED: confusing variable names?

2023-02-28 Thread Tom Hochstein
> -Original Message- > From: Richard Purdie > Sent: Tuesday, February 28, 2023 4:04 AM > To: michael.opdenac...@bootlin.com; Tom Hochstein > ; OE-core c...@lists.openembedded.org> > Cc: YP docs mailing list > Subject: Re: [OE-core] [DISTRO|MACHINE]_FEAT

Re: [OE-core] [DISTRO|MACHINE]_FEATURES_BACKFILL_CONSIDERED: confusing variable names?

2023-02-23 Thread Tom Hochstein
I agree. The problem I have with these variable names is that it's ambiguous whether the features will be included or excluded from the backfill. All you can tell from the names is that the values were 'considered'. What does that mean? You have to go to the manual to find the full meaning. Wha

Re: [OE-core] [meta-oe][PATCH] nlohmann-json: Allow empty main package for SDK

2023-02-07 Thread Tom Hochstein
to install empty package? Add > > > nlohmann-json-dev to imx-gpu-sdk recipe instead. > > > > On Mon, Feb 6, 2023 at 1:36 PM Tom Hochstein wrote: > > > > It has the advantage of not installing the header in the image. Should the > > -dev > > solution be

Re: [OE-core] [meta-oe][PATCH] nlohmann-json: Allow empty main package for SDK

2023-02-06 Thread Tom Hochstein
rtin Jansa Sent: Monday, February 6, 2023 3:13 PM To: Tom Hochstein Cc: openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [meta-oe][PATCH] nlohmann-json: Allow empty main package for SDK Wrong ML and why do you want to install empty package? Add nlohmann-json-dev to imx-gpu-

[OE-core] [meta-oe][PATCH] nlohmann-json: Allow empty main package for SDK

2023-02-06 Thread Tom Hochstein
packages. ``` Signed-off-by: Tom Hochstein --- meta-oe/recipes-devtools/nlohmann-json/nlohmann-json_3.11.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-devtools/nlohmann-json/nlohmann-json_3.11.2.bb b/meta-oe/recipes-devtools/nlohmann-json/nlohmann

[OE-core][PATCH v3] gstreamer1.0-plugins-good: Fix libsoup runtime dependency

2023-01-15 Thread Tom Hochstein
ass '' for this parameter. ``` However, the problem with this solution is that it does add the runtime dependency to _all_ such split packages. So, fix the problem with an explicit runtime dependency. Signed-off-by: Tom Hochstein --- .../gstreamer/gstreamer1.0-plugins-good

Re: [OE-Core][PATCH v2] gstreamer1.0-plugins-good: Fix libsoup runtime dependency

2023-01-15 Thread Tom Hochstein
- From: Richard Purdie Sent: Sunday, January 15, 2023 9:09 AM To: Tom Hochstein ; openembedded-core@lists.openembedded.org Subject: Re: [OE-Core][PATCH v2] gstreamer1.0-plugins-good: Fix libsoup runtime dependency On Sat, 2023-01-14 at 17:49 -0600, Tom Hochstein wrote: > The runtime depe

[OE-Core][PATCH v2] gstreamer1.0-plugins-good: Fix libsoup runtime dependency

2023-01-14 Thread Tom Hochstein
ass '' for this parameter. ``` However, the problem with this solution is that it does add the runtime dependency to _all_ such split packages. So, fix the problem with an explicit runtime dependency. Signed-off-by: Tom Hochstein --- .../gstreamer/gstreamer1.0-plugins-good

Re: [OE-core] [PATCH] gstreamer1.0-plugins-good: Fix libsoup runtime dependency

2023-01-14 Thread Tom Hochstein
/88d30848981db2cb7b1f2021ba07e40976cd789f V2 coming. -Original Message- From: Richard Purdie Sent: Saturday, January 14, 2023 11:02 AM To: Tom Hochstein ; openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH] gstreamer1.0-plugins-good: Fix libsoup runtime dependency On Fri, 2023-01-13 at 16:51

[OE-core] [PATCH] gstreamer1.0-plugins-good: Fix libsoup runtime dependency

2023-01-13 Thread Tom Hochstein
ass '' for this parameter. ``` However, the problem with this solution is that it does add the runtime dependency to _all_ such split packages. So, fix the problem with an explicit runtime dependency. Signed-off-by: Tom Hochstein --- .../gstreamer/gstreamer1.0-plugins-good

Re: [OE-core] [PATCH] vulkan-loader: Move libvulkan.so to main package

2022-10-18 Thread Tom Hochstein
Got it, thank you Ross! -Original Message- From: Ross Burton Sent: Tuesday, October 18, 2022 4:52 AM To: Tom Hochstein Cc: Martin Jansa ; openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH] vulkan-loader: Move libvulkan.so to main package On 17 Oct 2022, at 17:12

Re: [OE-core] [PATCH] vulkan-loader: Move libvulkan.so to main package

2022-10-17 Thread Tom Hochstein
this case be expected to use RDEPENDS to install the .so? From: Martin Jansa Sent: Monday, October 17, 2022 7:29 AM To: Ross Burton Cc: Tom Hochstein ; openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH] vulkan-loader: Move libvulkan.so to main package On Mon, Oct 17, 20

[OE-core] [PATCH] vulkan-loader: Move libvulkan.so to main package

2022-10-16 Thread Tom Hochstein
Since libvulkan.so is commonly loaded dynamically, put it in the main package. Signed-off-by: Tom Hochstein --- meta/recipes-graphics/vulkan/vulkan-loader_1.3.216.0.bb | 5 + 1 file changed, 5 insertions(+) diff --git a/meta/recipes-graphics/vulkan/vulkan-loader_1.3.216.0.bb b/meta

[OE-core] [PATCH] cmake: Fix CMAKE_SYSTEM_PROCESSOR setting for SDK

2022-09-07 Thread Tom Hochstein
When building using an SDK, cmake complains that the target architecture 'cortexa53-crypto' is unknown. The same build in bitbake uses the target architecture 'aarch64'. Set CMAKE_SYSTEM_PROCESSOR the same as for bitbake. Signed-off-by: Tom Hochstein --- meta/recipes-

[OE-core] [PATCH] connman: Drop redundant nfsroot handling

2022-09-07 Thread Tom Hochstein
connman has nfsroot support built in since version 1.34 [1], so the nfsroot handling in the init script is redundant. [1] https://git.kernel.org/pub/scm/network/connman/connman.git/commit/?id=ef0d26e6ef2b883193469f016117d8238c1c9658 Signed-off-by: Tom Hochstein --- .../connman/connman/connman

[OE-core] [PATCH] piglit: Add PACKAGECONFIG for glx and opencl

2022-08-22 Thread Tom Hochstein
- Allow GLX tests to be disabled for systems that don't support it. - Allow OpenCL tests to be enabled. Signed-off-by: Tom Hochstein --- ...roper-WAYLAND_INCLUDE_DIRS-variable.patch} | 0 ...-shader.c-do-not-hardcode-build-pat.patch} | 0 ...ists.txt-add-missing-endian.h-check.patch}

[OE-core] [PATCH] uboot-config.bbclass: Raise error for bad key

2022-07-28 Thread Tom Hochstein
7;] has no match in dict_keys(['sd-fslc', 'sd-imx', 'sd-optee-imx', 'sata-imx', 'mfgtool-imx']). ``` Signed-off-by: Tom Hochstein --- meta/classes/uboot-config.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/cl

[OE-core] [PATCH] gobject-introspection-data: Disable cache for g-ir-scanner

2022-07-18 Thread Tom Hochstein
ixed there by setting the environment variable GI_SCANNER_DISABLE_CACHE to disable the use of $HOME/.cache. Extend the fix to users of gobject-instropection by promoting the fix to the bbclass. Signed-off-by: Tom Hochstein --- meta/classes/gobject-introspection-data.bbclass | 5 + ..

[OE-core] [meta-python][PATCH] python3-pybind11: Override pip install variables

2022-02-28 Thread Tom Hochstein
Fix the pip install variables since the default values don't work here. Signed-off-by: Tom Hochstein --- meta-python/recipes-devtools/python/python3-pybind11_2.8.1.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-python/recipes-devtools/python/python3-pybind11_2.8.1.bb b

Re: [OE-core] [PATCH] bitbake.conf: add BB_NUMBER_THREADS to BB_HASHEXCLUDE_COMMON

2022-02-28 Thread Tom Hochstein
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Richard Purdie via > lists.openembedded.org > Sent: Monday, February 28, 2022 8:57 AM > To: Rasmus Villemoes ; openembedded- > c...@lists.openembedded.org > Subject: Re: [OE-co

Re: [OE-core] [PATCH] xwayland: Add xkbcomp runtime dependency

2022-01-31 Thread Tom Hochstein
Ping. > -Original Message- > From: Tom Hochstein > Sent: Wednesday, January 19, 2022 5:49 PM > To: openembedded-core@lists.openembedded.org > Cc: Tom Hochstein > Subject: [PATCH] xwayland: Add xkbcomp runtime dependency > > Trying to run an xterm fails with the

[OE-core] [PATCH] xwayland: Add xkbcomp runtime dependency

2022-01-19 Thread Tom Hochstein
github.com/openembedded/openembedded-core/commit/f2330ebc3071d780cbc6d1ddab5c54bfadf8fffc Signed-off-by: Tom Hochstein --- meta/recipes-graphics/xwayland/xwayland_21.1.3.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-graphics/xwayland/xwayland_21.1.3.bb b/meta/recipes-graphic

[OE-core] CMAKE_SYSTEM_PROCESSOR inconsistent in SDK

2021-12-16 Thread Tom Hochstein
A colleague notes a cmake problem in the SDK due to CMAKE_SYSTEM_PROCESSOR being set to 'cortexa53-crypto', which the package doesn't recognize. The package builds fine with bitbake because CMAKE_SYSTEM_PROCESSOR is set to 'aarch64', which the package does recognize. The value for the SDK comes

Re: [OE-core] pls comment on weston non-PAM patch (link inside)

2021-11-19 Thread Tom Hochstein
case we can backport the patch to meta-freescale until we have a new solution. Tom From: Alexander Kanavin Sent: Friday, November 19, 2021 11:06 AM To: OE-core ; Tom Hochstein ; Denys Dmytriyenko Cc: ppaala...@gmail.com Subject: Re: pls comment on weston non-PAM patch (link inside) Hello guys,

[OE-core] [honister][PATCH 3/3] bitbake.conf: Use wayland distro feature for native builds

2021-11-08 Thread Tom Hochstein
The wayland-scanner is missing from SDKs with weston, but the weston build requires wayland-scanner. Allow the distro feature in order to include the wayland-scanner packages via nativesdk-packagegroup-sdk-host.bb. Signed-off-by: Tom Hochstein Signed-off-by: Richard Purdie (cherry picked from

[OE-core] [honister][PATCH 1/3] wayland: Fix wayland-tools packaging

2021-11-08 Thread Tom Hochstein
wayland-scanner.mk is included in the main package by default, and so must be explicitly added to wayland-dev. Signed-off-by: Tom Hochstein Signed-off-by: Richard Purdie (cherry picked from commit a31fbec45d24df5b74091940d0e0b2daf34d8492) --- meta/recipes-graphics/wayland/wayland_1.19.0.bb | 6

[OE-core] [honister][PATCH 2/3] nativesdk-packagegroup-sdk-host.bb: Update host tools for wayland

2021-11-08 Thread Tom Hochstein
The wayland-scanner host tool required to build weston is moved to the wayland-tools package, so update the SDK host tools list accordingly. Also, the weston build requires wayland-scanner.pc to find wayland-scanner, so add wayland-dev. Signed-off-by: Tom Hochstein Signed-off-by: Richard Purdie

[OE-core] [PATCH v2 3/3] bitbake.conf: Use wayland distro feature for native builds

2021-11-07 Thread Tom Hochstein
The wayland-scanner is missing from SDKs with weston, but the weston build requires wayland-scanner. Allow the distro feature in order to include the wayland-scanner packages via nativesdk-packagegroup-sdk-host.bb. Signed-off-by: Tom Hochstein --- meta/conf/bitbake.conf | 4 ++-- 1 file changed

[OE-core] [PATCH v2 2/3] nativesdk-packagegroup-sdk-host.bb: Update host tools for wayland

2021-11-07 Thread Tom Hochstein
The wayland-scanner host tool required to build weston is moved to the wayland-tools package, so update the SDK host tools list accordingly. Also, the weston build requires wayland-scanner.pc to find wayland-scanner, so add wayland-dev. Signed-off-by: Tom Hochstein --- .../packagegroups

[OE-core] [PATCH v2 1/3] wayland: Fix wayland-tools packaging

2021-11-07 Thread Tom Hochstein
wayland-scanner.mk is included in the main package by default, and so must be explicitly added to wayland-dev. Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/wayland_1.19.0.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes-graphics/wayland

[OE-core] [PATCH 3/3] bitbake.conf: Use wayland distro feature for native builds

2021-11-07 Thread Tom Hochstein
The wayland-scanner is missing from SDKs with weston, but the weston build requires wayland-scanner. Allow the distro feature in order to include the wayland-scanner packages via nativesdk-packagegroup-sdk-host.bb. Signed-off-by: Tom Hochstein --- meta/conf/bitbake.conf | 4 ++-- 1 file changed

[OE-core] [PATCH 2/3] nativesdk-packagegroup-sdk-host.bb: Update host tools for wayland

2021-11-07 Thread Tom Hochstein
The wayland-scanner host tool required to build weston is moved to the wayland-tools package, so update the SDK host tools list accordingly. Also, the weston build requires wayland-scanner.pc to find wayland-scanner, so add wayland-tools-dev. Signed-off-by: Tom Hochstein --- .../packagegroups

[OE-core] [PATCH 1/3] wayland: Fix wayland-tools packaging problems

2021-11-07 Thread Tom Hochstein
│   └── wayland-scanner.pc └── share ├── aclocal │  └── wayland-scanner.m4 └── wayland └── wayland-scanner.mk Signed-off-by: Tom Hochstein --- meta/recipes-graphics/wayland/wayland_1.19.0.bb | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions

[OE-core] weston systemd watchdog

2021-08-23 Thread Tom Hochstein
Hi Khem, This is regarding the weston systemd watchdog timeout of 20 seconds: https://github.com/openembedded/openembedded-core/commit/c21fa5a291ab207a084285935ab73a0b4225c965#diff-ac8a4b56ade4a43a070c93486fb1d7606573da5d44de96bc1529d15b0b216660R36 For GPU-limited parts, we see watchdog timeouts

Re: [OE-core] [PATCH 2/2] gstreamer1.0-plugins-base: Use bb.utils.filter to reduce code

2021-04-15 Thread Tom Hochstein
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Otavio Salvador via > lists.openembedded.org > Sent: Thursday, April 15, 2021 9:59 AM > +OPENGL_WINSYS_append = "${@bb.utils.filter('PACKAGECONFIG', 'x11 gbm wayland > dispmanx egl viv-fb', d)}" Ne

Re: [OE-core] [meta-oe][PATCH] glm: Fix packaging for header-only recipe

2021-01-29 Thread Tom Hochstein
On Thu, Jan 28, 2021 at 10:57 PM Khem Raj <mailto:raj.k...@gmail.com> wrote: > > On Thu, Jan 28, 2021 at 5:44 PM Tom Hochstein <mailto:tom.hochst...@nxp.com> > wrote: > > Set ALLOW_EMPTY for the main package to "1" for this header-only recipe. > > Thi

[OE-core] [meta-oe][PATCH] glm: Fix packaging for header-only recipe

2021-01-28 Thread Tom Hochstein
Set ALLOW_EMPTY for the main package to "1" for this header-only recipe. This allows the SDK to be created properly when there is an RDEPENDS on glm. Signed-off-by: Tom Hochstein --- meta-oe/recipes-graphics/glm/glm_0.9.9.6.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)

[OE-core] [PATCH] [RFC] openssl: Enable cryptodev-linux by default

2021-01-28 Thread Tom Hochstein
This is a Request for Comment. Would it be a good idea to enable cryptodev-linux by default, gaining hardware acceleration where supported? Are there any unacceptable drawbacks? What happens on hardware without acceleration? Signed-off-by: Tom Hochstein --- meta/recipes-connectivity/openssl

Re: [OE-core] [PATCH] mesa: Add xcb-fixes to loader when using x11 and dri3

2020-11-12 Thread Tom Hochstein
> -Original Message- > From: Andrey Zhizhikin > Sent: Thursday, November 12, 2020 3:23 PM > > I believe all patch files are located in `files` folder, while this > patch tries to put it into `mesa` folder which does not exist yet? Is > it intended here? > It was a mistake, thanks for ca

[OE-core] [PATCH v2] mesa: Add xcb-fixes to loader when using x11 and dri3

2020-11-12 Thread Tom Hochstein
Backport fix for undefined symbol for xcb_xfixes_create_region in loader_dri3_helper.c. Signed-off-by: Tom Hochstein --- ...xes-to-loader-when-using-x11-and-dri.patch | 36 +++ meta/recipes-graphics/mesa/mesa.inc | 1 + 2 files changed, 37 insertions(+) create mode

Re: [OE-core] gtest and gmock not added to SDK

2020-05-22 Thread Tom Hochstein
On Fri, May 22, 2020 at 03:33 PM, Andre McCurdy wrote: > > On Fri, May 22, 2020 at 2:29 PM Otavio Salvador > wrote: > >> On Fri, May 22, 2020 at 5:48 PM Tom Hochstein >> wrote: >> >>> The gtest and gmock packages provided by googletest are not added to

[OE-core] gtest and gmock not added to SDK

2020-05-22 Thread Tom Hochstein
The gtest and gmock packages provided by googletest are not added to the SDK by default. I assume it is because the googletest main package is empty? I added an RDEPENDS_${PN} from the dependent package to fix it. Is there a better solution? Tom -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all me

[OE-core] Cannot disable weston

2020-05-06 Thread Tom Hochstein
We are no longer able to disable weston service with standard `systemctl disable weston@root.service`. On boot the service is started again. It seems likely this started with the introduction of a starting udev rule: https://github.com/openembedded/openembedded-core/commit/aa3bced2e1de2f4ba507aa

[OE-core][zeus][PATCH] security_flags.inc: fix flags missing from SDK toolchain

2020-03-25 Thread Tom Hochstein
The security flags were missing from the SDK toolchain because they were added specifically to class-target. Add them to class-cross-canadian as well (since the SDK environment file is created from cross-canadian target flags). Signed-off-by: Tom Hochstein Signed-off-by: Antoine Manache Signed

Re: [OE-core][PATCH] security_flags.inc: fix flags missing from SDK toolchain

2020-03-24 Thread Tom Hochstein
> -Original Message- > From: Richard Purdie > Sent: Tuesday, March 24, 2020 5:58 PM > To: Antoine Manache ; Tom Hochstein > > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core][PATCH] security_flags.inc: fix flags missing from SDK > toolc

Re: [OE-core][PATCH] security_flags.inc: fix flags missing from SDK toolchain

2020-03-24 Thread Tom Hochstein
> -Original Message- > From: Richard Purdie > Sent: Tuesday, March 24, 2020 1:03 PM > To: Antoine Manache ; Tom Hochstein > > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core][PATCH] security_flags.inc: fix flags missing from SDK > toolch

[OE-core][PATCH] security_flags.inc: fix flags missing from SDK toolchain

2020-03-24 Thread Tom Hochstein
The security flags were missing from the SDK toolchain because they were added specifically to class-target. Add them to class-cross-canadian as well. Signed-off-by: Tom Hochstein --- meta/conf/distro/include/security_flags.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/conf

  1   2   >