[OE-core] [PATCH 4/4] login.py: Proof of concept for screenshot testcases

2024-02-29 Thread Eilís 'pidge' Ní Fhlannagáin
- qemumips takes forever to render and is missing mouse icon. - qemuarm and qemuppc return incorrect width - All images have home and screen flipper icons not always rendered fully at first. The sleep seems to help this out some, depending on machine load. Signed-off-by: Eilís 'pidg

[OE-core] [PATCH 2/4] qemurunner.py: Fix error on calls to run_monitor

2024-02-29 Thread Eilís 'pidge' Ní Fhlannagáin
/qemu/qemu/commit/684750ab4f8a3ad69512b71532408be3ac2547d4 My concern with this patch is that I haven't seen this come up with utils/dump.py which also uses QemuMonitor's run_monitor. If it is occuring, this should fix issues there as well Signed-off-by: Eilís 'pidge' Ní Fhlann

[OE-core] [PATCH 1/4] sstatetests.py: Add testing for correct sstate permissions

2024-02-29 Thread Eilís 'pidge' Ní Fhlannagáin
This patch adds to run_test_sstate_creation so that it also tests that sstate directories don't accidentally pickup umask permissions from the user upon creation. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- meta/lib/oeqa/selftest/cases/sstatetests.py | 28 ++

[OE-core] [PATCH 0/4] image-tests and sstate permissions testing

2024-02-29 Thread Eilís 'pidge' Ní Fhlannagáin
This patch series implements image-testing proof of concept and sstate permissions testing for self test. It fixes an issue in qemurunner due to changes in QEMUMonitorProtocol.cmd() and adds test png images to compare against for the image-testing. Eilís 'pidge' Ní Fhla

[OE-core] [PATCH v3 3/3] creategroup*: Remove coreutils-native as a DEPENDS

2024-02-23 Thread Eilís 'pidge' Ní Fhlannagáin
There isn't any reason for coreutils-native as a DEPENDS, so remove it to speed up tests. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- meta-selftest/recipes-test/selftest-users/creategroup1.bb | 2 -- meta-selftest/recipes-test/selftest-users/creategroup2.bb | 1 - 2 f

[OE-core] [PATCH v3 0/3] Useradd postinstall fixes and tests

2024-02-23 Thread Eilís 'pidge' Ní Fhlannagáin
These commits fix #13904 and #15084, adds a test for it and adds a minor fix for the creategroup tests Eilís 'pidge' Ní Fhlannagáin (2): selftest-users: Convoluted selftest for USERADD_DEPENDS creategroup*: Remove coreutils-native as a DEPENDS Piotr Łobacz (1): useradd.bbclass:

[OE-core] [PATCH v3 2/3] selftest-users: Convoluted selftest for USERADD_DEPENDS

2024-02-23 Thread Eilís 'pidge' Ní Fhlannagáin
This adds a test for 13904's fix by creating a convoluted set of recipes with USERADD_DEPENDS in non-alpha order. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../selftest-users/acreategroup.bb| 32 .../selftest-users/bcreategroup.bb

[OE-core] [PATCH v3 1/3] useradd.bbclass: Fix order of postinst-useradd-*

2024-02-23 Thread Eilís 'pidge' Ní Fhlannagáin
-by: Eilís 'pidge' Ní Fhlannagáin Signed-off-by: Piotr Łobacz Signed-off-by: Jan Górski --- meta/classes-global/staging.bbclass | 4 +- meta/classes/useradd.bbclass| 67 ++--- 2 files changed, 43 insertions(+), 28 deletions(-) diff --git a

[OE-core] [PATCH v2 2/3] selftest-users: Convoluted selftest for USERADD_DEPENDS

2024-02-23 Thread Eilís 'pidge' Ní Fhlannagáin
This adds a test for 13904's fix by creating a convoluted set of recipes with USERADD_DEPENDS in non-alpha order. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../selftest-users/acreategroup.bb| 32 .../selftest-users/bcreategroup.bb

[OE-core] [PATCH v2 3/3] creategroup*: Remove coreutils-native as a DEPENDS

2024-02-23 Thread Eilís 'pidge' Ní Fhlannagáin
There isn't any reason for coreutils-native as a DEPENDS, so remove it to speed up tests. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- meta-selftest/recipes-test/selftest-users/creategroup1.bb | 2 -- meta-selftest/recipes-test/selftest-users/creategroup2.bb | 1 - 2 f

[OE-core] [PATCH v2 1/3] useradd.bbclass: Fix order of postinst-useradd-*

2024-02-23 Thread Eilís 'pidge' Ní Fhlannagáin
-by: Eilís 'pidge' Ní Fhlannagáin --- meta/classes-global/staging.bbclass | 7 +-- meta/classes/useradd.bbclass| 72 ++--- 2 files changed, 49 insertions(+), 30 deletions(-) diff --git a/meta/classes-global/staging.bbclass b/meta/classes-global/s

[OE-core] [PATCH v2 0/3] Useradd postinstall fixes and tests

2024-02-23 Thread Eilís 'pidge' Ní Fhlannagáin
These commits fix #13904 and #15084, adds a test for it and adds a minor fix for the creategroup tests Eilís 'pidge' Ní Fhlannagáin (2): selftest-users: Convoluted selftest for USERADD_DEPENDS creategroup*: Remove coreutils-native as a DEPENDS Piotr Łobacz (1): useradd.bbclass:

[OE-core] [PATCH 3/3] creategroup*: Remove coreutils-native as a DEPENDS

2024-02-22 Thread Eilís 'pidge' Ní Fhlannagáin
There isn't any reason for coreutils-native as a DEPENDS, so remove it to speed up tests. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- meta-selftest/recipes-test/selftest-users/creategroup1.bb | 2 -- meta-selftest/recipes-test/selftest-users/creategroup2.bb | 1 - 2 f

[OE-core] [PATCH 2/3] selftest-users: Convoluted selftest for USERADD_DEPENDS

2024-02-22 Thread Eilís 'pidge' Ní Fhlannagáin
This adds a test for 13904's fix by creating a convoluted set of recipes with USERADD_DEPENDS in non-alpha order. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../selftest-users/acreategroup.bb| 32 .../selftest-users/bcreategroup.bb

[OE-core] [PATCH 1/3] useradd.bbclass: Fix order of postinst-useradd-*

2024-02-22 Thread Eilís 'pidge' Ní Fhlannagáin
users and groupmems are all run in the correct order. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- meta/classes-global/staging.bbclass | 7 +-- meta/classes/useradd.bbclass| 72 ++--- 2 files changed, 49 insertions(+), 30 deletions(-) diff --git a

[OE-core] [PATCH 0/3] Useradd postinstall fixes and tests

2024-02-22 Thread Eilís 'pidge' Ní Fhlannagáin
These commits fix #13904 and #15084, adds a test for it and adds a minor fix for the creategroup tests Eilís 'pidge' Ní Fhlannagáin (2): selftest-users: Convoluted selftest for USERADD_DEPENDS creategroup*: Remove coreutils-native as a DEPENDS Piotr Łobacz (1): useradd.bbclass:

Re: [OE-core] [PATCHv2 4/4] login.py: Proof of concept for screenshot testcases

2023-12-14 Thread Eilís 'pidge' Ní Fhlannagáin
On 14/12/2023 17:29, Richard Purdie wrote: On Thu, 2023-12-14 at 16:32 +, Eilís 'pidge' Ní Fhlannagáin wrote: On 13/12/2023 20:55, Richard Purdie wrote: On Wed, 2023-12-13 at 20:30 +0000, Eilís 'pidge' Ní Fhlannagáin wrote: This takes the work rburton did on image sc

[OE-core] [PATCHv3 1/1] login.py: Proof of concept for screenshot testcases

2023-12-14 Thread Eilís 'pidge' Ní Fhlannagáin
ENDS:append:qemuall = " imagemagick-native:do_populate_sysroot " Signed-off-by: Eilís 'pidge' Ní Fhlannagáin Co-authored-by: Ross Burton Co-authored-by: Eilís 'pidge' Ní Fhlannagáin --- .../core-image-sato-qemux86-64.png| Bin 0 -> 46986 bytes meta/lib/oe

Re: [OE-core] [PATCHv2 4/4] login.py: Proof of concept for screenshot testcases

2023-12-14 Thread Eilís 'pidge' Ní Fhlannagáin
On 13/12/2023 20:55, Richard Purdie wrote: On Wed, 2023-12-13 at 20:30 +, Eilís 'pidge' Ní Fhlannagáin wrote: This takes the work rburton did on image screenshot testing and expands it. Right now this only works for qemux86-64. Some standardization of screensize/resolution needs

[OE-core] [PATCHv2 4/4] login.py: Proof of concept for screenshot testcases

2023-12-13 Thread Eilís 'pidge' Ní Fhlannagáin
-openembedded/meta-oe in your bblayers.conf and the following in local.conf: IMAGE_CLASSES += "testimage" TEST_SUITES = "login" IMAGE_INSTALL:append = " python3-qemu-qmp " TESTIMAGEDEPENDS:append:qemuall = " imagemagick-native:do_populate_sysroot " Signed-

[OE-core] [PATCHv2 2/4] python3-qemu-qmp: Add recipe

2023-12-13 Thread Eilís 'pidge' Ní Fhlannagáin
From: Ross Burton Add a recipe for python QEMU Monitor Protocol. This will be needed for qemu screendumps for qemu screendump testing. Signed-off-by: Ross Burton Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../python/python3-qemu-qmp_0.0.2.bb | 14

[OE-core] [PATCHv2 3/4] runqemu: add qmp socket support

2023-12-13 Thread Eilís 'pidge' Ní Fhlannagáin
From: Ross Burton Add support for qmp sockets and defaults to unix:qmp.sock if unspecified Signed-off-by: Ross Burton Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- scripts/runqemu | 11 +++ 1 file changed, 11 insertions(+) diff --git a/scripts/runqemu b/scripts/run

[OE-core] [PATCHv2 0/4] Proof of concept for screenshot testcases

2023-12-13 Thread Eilís 'pidge' Ní Fhlannagáin
-openembedded/meta-oe in your bblayers.conf and the following in local.conf: IMAGE_CLASSES += "testimage" TEST_SUITES = "login" IMAGE_INSTALL:append = " python3-qemu-qmp " TESTIMAGEDEPENDS:append:qemuall = " imagemagick-native:do_populate_sysroot " Eilís '

[OE-core] [PATCHv2 1/4] qemurunner: remove unused import

2023-12-13 Thread Eilís 'pidge' Ní Fhlannagáin
From: Ross Burton Removes unused logging import Signed-off-by: Ross Burton Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- meta/lib/oeqa/utils/qemurunner.py | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunne

[OE-core] [PATCH 1/2] usergrouptests.py: Test that postinst-useradd-* run in order

2023-12-12 Thread Eilís 'pidge' Ní Fhlannagáin
This tests for 13904, that postinst-useradd-* run in order. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../selftest-users/asecondgroup.bb| 31 +++ .../selftest-users/bfirstgroup.bb | 29 + .../selftest-users/cthi

[OE-core] [PATCH 2/2] staging: ensure postinst-useradd is run in order

2023-12-12 Thread Eilís 'pidge' Ní Fhlannagáin
it's not found, we'll just call it later, but if so, I'm not seeing where exactly that's happening. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- meta/classes-global/staging.bbclass | 6 +-- meta/classes/useradd.bbclass| 74 ++--

[OE-core] [PATCH 4/4] login.py: Proof of concept for screenshot testcases

2023-12-07 Thread Eilís 'pidge' Ní Fhlannagáin
do, we fail. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin Co-authored-by: Ross Burton Co-authored-by: Eilís 'pidge' Ní Fhlannagáin --- .../core-image-sato-qemux86-64.png| Bin 0 -> 46986 bytes meta/lib/oeqa/runtime/cases/login.py | 39

[OE-core] [PATCH 3/4] runqemu: add qmp socket support

2023-12-07 Thread Eilís 'pidge' Ní Fhlannagáin
From: Ross Burton Add support for qmp sockets and defaults to unix:qmp.sock if unspecified Signed-off-by: Ross Burton Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- scripts/runqemu | 11 +++ 1 file changed, 11 insertions(+) diff --git a/scripts/runqemu b/scripts/run

[OE-core] [PATCH 0/4] Image screenshot testing proof of concept

2023-12-07 Thread Eilís 'pidge' Ní Fhlannagáin
This patch series is based off of earlier work from Ross Burton to enable QMP based screenshot testing. Eilís 'pidge' Ní Fhlannagáin (1): login.py: Proof of concept for screenshot testcases Ross Burton (3): qemurunner: remove unused import python3-qemu-qmp: Add recipe runqem

[OE-core] [PATCH 1/4] qemurunner: remove unused import

2023-12-07 Thread Eilís 'pidge' Ní Fhlannagáin
From: Ross Burton Removes unused logging import Signed-off-by: Ross Burton Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- meta/lib/oeqa/utils/qemurunner.py | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunne

[OE-core] [PATCH 2/4] python3-qemu-qmp: Add recipe

2023-12-07 Thread Eilís 'pidge' Ní Fhlannagáin
From: Ross Burton Add a recipe for python QEMU Monitor Protocol. This will be needed for qemu screendumps for qemu screendump testing. Signed-off-by: Ross Burton Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../python/python3-qemu-qmp_0.0.2.bb | 14

[OE-core] [PATCH] subports: Use _GNU_SOURCE

2023-12-07 Thread Eilís 'pidge' Ní Fhlannagáin
[YOCTO #15074] The syncfs probe in ports/unix/subports was failing if the compiler does not support implicit function declarations. syncfs is protected and requires _GNU_SOURCE, so the answer here is to pull it in. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../pseudo/fi

[OE-core] [PATCH 1/3] useradd: Fix issues with useradd dependencies

2023-12-07 Thread Eilís 'pidge' Ní Fhlannagáin
eople from doing this. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../selftest-users/creategroup1.bb| 32 ++ .../selftest-users/creategroup2.bb| 33 +++ .../selftest-users/useraddbadtask.bb | 20 +++ meta/cla

[OE-core] [PATCH 3/3] variables.rst: Add USERADD_DEPENDS

2023-12-07 Thread Eilís 'pidge' Ní Fhlannagáin
Adding USERADD_DEPENDS to the variables document Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- documentation/ref-manual/variables.rst | 15 +++ 1 file changed, 15 insertions(+) diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables

[OE-core] [PATCH 0/3] useradd fixes, tests and documentation

2023-12-07 Thread Eilís 'pidge' Ní Fhlannagáin
cipes does not work properly Tests: Bug 14961 - addtask between do_populate_sysroot and do_package breaks useradd class Documentation for useradd is also included. Eilís 'pidge' Ní Fhlannagáin (3): useradd: Fix issues with useradd dependencies usergrouptests.py: Add test for swit

[OE-core] [PATCH 2/3] usergrouptests.py: Add test for switching between static-ids

2023-12-07 Thread Eilís 'pidge' Ní Fhlannagáin
This test is related to https://bugzilla.yoctoproject.org/show_bug.cgi?id=12107 At the moment it doesn't seem to be able to actually replicate this issue in the bug, which tells me it's likely fixed. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../lib/oeqa/selftest/cas

Re: [OE-core] [RFC 2/2] useradd.bbclass: ensure sysroot_setscene for DEPENDS

2023-11-25 Thread Eilís 'pidge' Ní Fhlannagáin
On 25/11/2023 15:21, Eilís 'pidge' Ní Fhlannagáin wrote: On 24/11/2023 14:10, Eilís 'pidge' Ní Fhlannagáin wrote: On 23/11/2023 14:11, Richard Purdie wrote: On Thu, 2023-11-23 at 13:49 +0000, Eilís 'pidge' Ní Fhlannagáin wrote: [YOCTO #13419] If recipeB crea

Re: [OE-core] [RFC 2/2] useradd.bbclass: ensure sysroot_setscene for DEPENDS

2023-11-25 Thread Eilís 'pidge' Ní Fhlannagáin
On 24/11/2023 14:10, Eilís 'pidge' Ní Fhlannagáin wrote: On 23/11/2023 14:11, Richard Purdie wrote: On Thu, 2023-11-23 at 13:49 +0000, Eilís 'pidge' Ní Fhlannagáin wrote: [YOCTO #13419] If recipeB creates a user and assigns it to a group created in recipeA, we need to ensu

Re: [OE-core] [RFC 2/2] useradd.bbclass: ensure sysroot_setscene for DEPENDS

2023-11-24 Thread Eilís 'pidge' Ní Fhlannagáin
On 23/11/2023 14:11, Richard Purdie wrote: On Thu, 2023-11-23 at 13:49 +, Eilís 'pidge' Ní Fhlannagáin wrote: [YOCTO #13419] If recipeB creates a user and assigns it to a group created in recipeA, we need to ensure two things: That recipeA is in recipeB's DEPENDS (documenta

[OE-core] [RFC 2/2] useradd.bbclass: ensure sysroot_setscene for DEPENDS

2023-11-23 Thread Eilís 'pidge' Ní Fhlannagáin
?id=13279 https://bugzilla.yoctoproject.org/show_bug.cgi?id=13904 https://bugzilla.yoctoproject.org/show_bug.cgi?id=15084 Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- meta/classes/useradd.bbclass | 8 1 file changed, 8 insertions(+) diff --git a/meta/classes/useradd.bbclass b/met

[OE-core] [RFC 0/2] useradd improvements

2023-11-23 Thread Eilís 'pidge' Ní Fhlannagáin
This patch series includes tests for a few deficits in useradd and a patch to user add that should fix a few issues with recipes who have useradd interdependencies. It's still a WIP, but after discussion with RP I wanted to send this out. Eilís 'pidge' Ní Fhlannagáin (2): user

[OE-core] [RFC 1/2] usergrouptests: Add initial useradd testing

2023-11-23 Thread Eilís 'pidge' Ní Fhlannagáin
This commit tests for https://bugzilla.yoctoproject.org/show_bug.cgi?id=13419 https://bugzilla.yoctoproject.org/show_bug.cgi?id=14961 Fixes for these are in following commits. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../selftest-users/creategroup1.bb

[OE-core] [PATCH 2/2] update_mandb: deb fails due to missing man cache

2023-09-14 Thread Eilís 'pidge' Ní Fhlannagáin
vesdk-intercepts. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- scripts/postinst-intercepts/update_mandb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/postinst-intercepts/update_mandb b/scripts/postinst-intercepts/update_mandb index a061bb426a6..f91bafdb117 100644 --- a/s

[OE-core] [PATCH 0/2] Ensure sdk.py knows about nativesdk-intercepts

2023-09-14 Thread Eilís 'pidge' Ní Fhlannagáin
This patch series ensures that do_populate_sdk knows about nativesdk-intercepts. It also ensures that debian builds work with update_mandb. Eilís 'pidge' Ní Fhlannagáin (2): lib/oe/package_managegment: Add nativesdk-intercept PATH update_mandb: deb fails due to missing man cache m

[OE-core] [PATCH 1/2] lib/oe/package_managegment: Add nativesdk-intercept PATH

2023-09-14 Thread Eilís 'pidge' Ní Fhlannagáin
/man/ does not exist for some reason. I've a work around for that in the next patch in this series. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- meta/lib/oe/package_manager/deb/sdk.py | 5 + meta/lib/oe/package_manager/ipk/sdk.py | 5 + meta/lib/oe/package_manager/rpm/sdk.

[OE-core] [PATCH] update_mandb: Point to correct /etc/passwd with man

2023-09-08 Thread Eilís 'pidge' Ní Fhlannagáin
recipe-sysroot (which does have man:man). Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- scripts/postinst-intercepts/update_mandb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/postinst-intercepts/update_mandb b/scripts/postinst-intercepts/update_m

[OE-core] [PATCH 0/2] Fix nativesdk-intercepts for chown/chgrp

2023-09-07 Thread Eilís 'pidge' Ní Fhlannagáin
fter (which is correct): ./scripts/nativesdk-intercept/chown -R pidge:pidge README.md ['/usr/bin/chown', '-R', 'root:root', 'README.md'] Eilís 'pidge' Ní Fhlannagáin (2): populate_sdk_base.bbclass: PATH to nativesdk-interce

[OE-core] [PATCH 2/2] nativesdk-intercept: Fix bad intercept chgrp/chown logic

2023-09-07 Thread Eilís 'pidge' Ní Fhlannagáin
r flags and USER[:GROUP] next, this fixes the issue. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- scripts/nativesdk-intercept/chgrp | 5 - scripts/nativesdk-intercept/chown | 5 - 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/scripts/nativesdk-intercept/chgrp

[OE-core] [PATCH 1/2] populate_sdk_base.bbclass: PATH to nativesdk-intercept chown/chgrp

2023-09-07 Thread Eilís 'pidge' Ní Fhlannagáin
[YOCTO #15023] This patch fixes building the sdk with api-documentation enabled by appending PATH with the nativesdk-intercept directory which contains a special version of chown and chgrp. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- meta/classes-recipe/populate_sdk_base.bbclas

Re: [OE-core] [PATCH] update_mandb: Point to correct /etc/passwd with man

2023-09-04 Thread Eilís 'pidge' Ní Fhlannagáin
On 30/08/2023 21:10, Richard Purdie wrote: On Wed, 2023-08-30 at 21:08 +0100, Richard Purdie via lists.openembedded.org wrote: On Wed, 2023-08-30 at 18:07 +0100, Eilís 'pidge' Ní Fhlannagáin wrote: On 30/08/2023 15:08, Richard Purdie wrote: On Wed, 2023-08-30 at 15:04 +0100, Eilís

Re: [OE-core] [PATCH] update_mandb: Point to correct /etc/passwd with man

2023-08-30 Thread Eilís 'pidge' Ní Fhlannagáin
On 30/08/2023 15:08, Richard Purdie wrote: On Wed, 2023-08-30 at 15:04 +0100, Eilís 'pidge' Ní Fhlannagáin wrote: On 30/08/2023 14:19, Richard Purdie wrote: On Wed, 2023-08-30 at 12:39 +0000, Eilís 'pidge' Ní Fhlannagáin wrote: [YOCTO #15023] In this instance (do_p

Re: [OE-core] [PATCH] update_mandb: Point to correct /etc/passwd with man

2023-08-30 Thread Eilís 'pidge' Ní Fhlannagáin
On 30/08/2023 14:19, Richard Purdie wrote: On Wed, 2023-08-30 at 12:39 +, Eilís 'pidge' Ní Fhlannagáin wrote: [YOCTO #15023] In this instance (do_populate_sdk with api-documentation turned on), pseudo is going to end up finding the passwd/groups files in recipe-sysroot-nativ

[OE-core] [PATCH] update_mandb: Point to correct /etc/passwd with man

2023-08-30 Thread Eilís 'pidge' Ní Fhlannagáin
recipe-sysroot (which does have man:man). Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- scripts/postinst-intercepts/update_mandb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/postinst-intercepts/update_mandb b/scripts/postinst-intercepts/update_m

Re: [OE-core] [PATCH v2 0/3] wayland/weston upgrades

2023-06-23 Thread Eilís 'pidge' Ní Fhlannagáin
On 23/06/2023 09:46, Luca Ceresoli wrote: Hello Eilís, On Thu, 22 Jun 2023 15:42:14 +0100 Eilís 'pidge' Ní Fhlannagáin wrote: Nothing really surprising here, except we should note that launcher-logind is being depreciated so some thought on how that is dealt with will need to occu

Re: [OE-core] [PATCH v2 2/3] weston: Upgrade 11.0.1 -> 12.0.1

2023-06-23 Thread Eilís 'pidge' Ní Fhlannagáin
On 23/06/2023 11:16, Luca Ceresoli wrote: Hello Eilís, On Thu, 22 Jun 2023 15:42:16 +0100 Eilís 'pidge' Ní Fhlannagáin wrote: Tracking https://gitlab.freedesktop.org/wayland/weston/-/issues/488 we're keeping -Ddeprecated-launcher-logind but plans should be made to remove t

[OE-core] [PATCH v2 1/3] wayland-utils: Upgrade 1.1.0 -> 1.2.0

2023-06-22 Thread Eilís 'pidge' Ní Fhlannagáin
Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- ...ayland-info-Fix-build-without-libdrm.patch | 42 --- ...-utils_1.1.0.bb => wayland-utils_1.2.0.bb} | 3 +- 2 files changed, 1 insertion(+), 44 deletions(-) delete mode 100644 meta/recipes-graphics/wayland/files

[OE-core] [PATCH v2 0/3] wayland/weston upgrades

2023-06-22 Thread Eilís 'pidge' Ní Fhlannagáin
Nothing really surprising here, except we should note that launcher-logind is being depreciated so some thought on how that is dealt with will need to occur and that we'll need to pull xcb-util-cursor from meta-openembedded as it's needed here for weston's ptest now. Eilís 'p

[OE-core] [PATCH v2 2/3] weston: Upgrade 11.0.1 -> 12.0.1

2023-06-22 Thread Eilís 'pidge' Ní Fhlannagáin
from meta-oe. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../wayland/{weston_11.0.1.bb => weston_12.0.1.bb}| 11 --- .../xorg-lib/xcb-util-cursor_0.1.4.bb | 10 ++ 2 files changed, 18 insertions(+), 3 deletions(-) rename meta/recipe

[OE-core] [PATCH v2 3/3] xwayland: Upgrade 23.1.1 -> 23.1.2

2023-06-22 Thread Eilís 'pidge' Ní Fhlannagáin
Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../xwayland/{xwayland_23.1.1.bb => xwayland_23.1.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-graphics/xwayland/{xwayland_23.1.1.bb => xwayland_23.1.2.bb} (95%) diff --git a/meta/

Re: [OE-core] [PATCH 0/3] wayland/weston upgrades

2023-06-16 Thread Eilís 'pidge' Ní Fhlannagáin
On 16/06/2023 08:31, Richard Purdie wrote: On Thu, 2023-06-15 at 20:20 +0100, Eilís 'pidge' Ní Fhlannagáin wrote: Nothing really surprising here, except we should note that launcher-logind is being depreciated so some thought on how that is dealt with will need to occur. Eilís

[OE-core] [PATCH 0/3] wayland/weston upgrades

2023-06-15 Thread Eilís 'pidge' Ní Fhlannagáin
Nothing really surprising here, except we should note that launcher-logind is being depreciated so some thought on how that is dealt with will need to occur. Eilís 'pidge' Ní Fhlannagáin (3): wayland-utils: upgrade 1.1.0 -> 1.2.0 weston: Upgrade 11.0.1 -> 12.0.1 xwayland

[OE-core] [PATCH 3/3] xwayland: Upgrade 23.1.1 -> 23.1.2

2023-06-15 Thread Eilís 'pidge' Ní Fhlannagáin
Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../xwayland/{xwayland_23.1.1.bb => xwayland_23.1.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-graphics/xwayland/{xwayland_23.1.1.bb => xwayland_23.1.2.bb} (95%) diff --git a/meta/

[OE-core] [PATCH 2/3] weston: Upgrade 11.0.1 -> 12.0.1

2023-06-15 Thread Eilís 'pidge' Ní Fhlannagáin
Tracking https://gitlab.freedesktop.org/wayland/weston/-/issues/488 we're keeping -Ddeprecated-launcher-logind but plans should be made to remove this/work around. Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- .../wayland/{weston_11.0.1.bb => weston_12.0.1.bb} | 10

[OE-core] [PATCH 1/3] wayland-utils: upgrade 1.1.0 -> 1.2.0

2023-06-15 Thread Eilís 'pidge' Ní Fhlannagáin
Signed-off-by: Eilís 'pidge' Ní Fhlannagáin --- ...ayland-info-Fix-build-without-libdrm.patch | 42 --- ...-utils_1.1.0.bb => wayland-utils_1.2.0.bb} | 3 +- 2 files changed, 1 insertion(+), 44 deletions(-) delete mode 100644 meta/recipes-graphics/wayland/files