From 8a757d34c4438f42a8fc00fc8f180e823f3dce41 Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov Date: Thu, 12 Sep 2024 16:25:49 +0300 Subject: [PATCH 1/2] initramfs-test-full-image: disable crash on musl systems crash isn't compatible with libc-musl, disable it. Signed-off-by: Dmitry Baryshkov --- recipes-test/images/initramfs-test-full-image.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-test/images/initramfs-test-full-image.bb b/recipes-test/images/initramfs-test-full-image.bb index d3a5e97c2..093b571f9 100644 --- a/recipes-test/images/initramfs-test-full-image.bb +++ b/recipes-test/images/initramfs-test-full-image.bb @@ -27,7 +27,7 @@ PACKAGE_INSTALL:append:libc-glibc = " \ # ncurses-terminfo is provided by oe-core layer, but it's only needed for gps (cgps), so include it here PACKAGE_INSTALL_openembedded-layer += " \ - crash \ + ${@['crash', ''][${TCLIBC} != 'musl']} \ dhrystone \ gpsd \ gpsd-machine-conf \ From 3a3204a5f5d4f35a8cbff2a88cf50cc89d418731 Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov Date: Thu, 12 Sep 2024 16:26:29 +0300 Subject: [PATCH 2/2] CI: also enable meta-python gpsd depends on meta-python, add it for now. Signed-off-by: Dmitry Baryshkov --- .github/workflows/build-template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-template.yml b/.github/workflows/build-template.yml index 419308614..b15d2503c 100644 --- a/.github/workflows/build-template.yml +++ b/.github/workflows/build-template.yml @@ -66,7 +66,7 @@ jobs: distro: $DISTRO target: ${{inputs.images}} bblayers_conf: - - BBLAYERS += '../$(echo ${{github.repository}} | cut -d'/' -f2) ../meta-openembedded/meta-oe' + - BBLAYERS += '../$(echo ${{github.repository}} | cut -d'/' -f2) ../meta-openembedded/meta-oe ../meta-openembedded/meta-python' artifacts: [] EOF