aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2023-01-23 14:43:31 +0000
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-01-31 12:50:22 +0000
commit543604244d50cf4e050abef80fe8dfb5b4ad14d6 (patch)
tree489feceec143c336c230cce1dd2a883c3f5b289a
parentc4561ed2f0c088127896712beab0678d3416318f (diff)
qtbase: enable kms platform plugin by default
Most targets can already use the kms/gbm platform plugins, so enabled them by default. Targets that don't provide them can override the PACKAGECONFIG_GRAPHICS to define which graphic backend they support. Change-Id: I85b310608772884134a63138781aad9fa1220110 Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io> (cherry picked from commit b1db9ca0d55e4109c85753be11926c9f6ac626cb) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--recipes-qt/qt6/qtbase_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-qt/qt6/qtbase_git.bb b/recipes-qt/qt6/qtbase_git.bb
index 934211c..e60c22b 100644
--- a/recipes-qt/qt6/qtbase_git.bb
+++ b/recipes-qt/qt6/qtbase_git.bb
@@ -52,7 +52,7 @@ PACKAGECONFIG ?= "\
PACKAGECONFIG_GRAPHICS ?= "\
${@bb.utils.filter('DISTRO_FEATURES', 'vulkan', d)} \
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', \
- bb.utils.contains('DISTRO_FEATURES', 'x11', 'gl', 'gles2 eglfs', d), 'no-opengl linuxfb', d)} \
+ bb.utils.contains('DISTRO_FEATURES', 'x11', 'gl', 'kms gbm gles2 eglfs', d), 'no-opengl linuxfb', d)} \
${@bb.utils.contains('DISTRO_FEATURES', 'directfb', 'directfb', '', d)} \
"
PACKAGECONFIG_X11 ?= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'xcb', '', d)}"