From 2b733d53f33849aeefec6bde5b528c3a3b155e14 Mon Sep 17 00:00:00 2001 From: Carlos Alberto Lopez Perez Date: Thu, 1 Dec 2022 20:18:39 +0100 Subject: [PATCH] weston: disablepackageconfig options that fail to build with userland drivers * Weston 10 (Yocto Langdale) fails to build with userland drivers when the packageconfig options 'egl' or 'clients' are enabled, and those are enabled by default. So disable them by default when building with DISABLE_VC4GRAPHICS=1 Signed-off-by: Carlos Alberto Lopez Perez --- recipes-graphics/wayland/weston_%.bbappend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-graphics/wayland/weston_%.bbappend b/recipes-graphics/wayland/weston_%.bbappend index 89917f0..f9ed06a 100644 --- a/recipes-graphics/wayland/weston_%.bbappend +++ b/recipes-graphics/wayland/weston_%.bbappend @@ -1,4 +1,4 @@ -PACKAGECONFIG:remove:rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', 'fbdev', '', d)}" +PACKAGECONFIG:remove:rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', 'fbdev', 'egl clients', d)}" EXTRA_OECONF:append:rpi = " \ --disable-xwayland-test \