When X11 and Wayland DISTRO_FEATURES are available, fsl-gpu-sdk ought to use Wayland.
Wayland backend is preferred as in this case we will be using X11 on top of Wayland (XWayland). Signed-off-by: Neena Busireddy <[email protected]> --- recipes-graphics/fsl-gpu-sdk/fsl-gpu-sdk_2.1.bb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/recipes-graphics/fsl-gpu-sdk/fsl-gpu-sdk_2.1.bb b/recipes-graphics/fsl-gpu-sdk/fsl-gpu-sdk_2.1.bb index 3814617..fb05f68 100644 --- a/recipes-graphics/fsl-gpu-sdk/fsl-gpu-sdk_2.1.bb +++ b/recipes-graphics/fsl-gpu-sdk/fsl-gpu-sdk_2.1.bb @@ -23,9 +23,11 @@ SRC_URI = "${FSL_MIRROR}/${PN}-${PV}.bin;fsl-eula=true" SRC_URI[md5sum] = "8f656b8a3a7b7390f434ec1cebf66334" SRC_URI[sha256sum] = "eccfd6f412c256e92e61d811cbe607e77bdfd13e268f4840b819e32dcd92921e" -BACKEND = "${@base_contains('DISTRO_FEATURES', 'x11', 'X11', \ - base_contains('DISTRO_FEATURES', 'wayland', 'Wayland', \ - base_contains('DISTRO_FEATURES', 'directfb', 'DirectFB', 'FB', d), d), d)}" +BACKEND = "${@base_contains('DISTRO_FEATURES', 'x11', \ + base_contains('DISTRO_FEATURES', 'wayland', 'Wayland', 'X11', d), \ + base_contains('DISTRO_FEATURES', 'wayland', 'Wayland', \ + base_contains('DISTRO_FEATURES', 'directfb', 'DirectFB', 'FB', d), d),d)}" + do_compile () { export FSL_GRAPHICS_SDK=${S} export FSL_PLATFORM_NAME=Yocto -- 1.9.1 -- _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
