| Message ID | 20260122123107.3001250-1-j-sahu@ti.com |
|---|---|
| State | Under Review |
| Delegated to: | Ryan Eatmon |
| Headers | show |
| Series | [meta-arago,master,v3,1/2] gstreamer1.0-plugins-good: Enable QT6 PACKAGECONFIG support | expand |
meta-arago / na / 20260122123107.3001250-1-j-sahu
PRC Results: PASS
=========================================================
check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
WARN - [meta-arago][master][PATCH v3 2/2] meson: Add patch to fix Qt6 private header detection for cross-compilation
WARN: Revised patch missing a comment. (REVISION-1)
patch
For details on the above errors/warnings visit: https://lists.yoctoproject.org/g/meta-ti/wiki/40887
=========================================================
apply-yocto-patch: PASS
=========================================================
master
=====================
Summary:
- Patch Series: [meta-arago][master][PATCH v3 1/2] gstreamer1.0-plugins-good: Enable QT6 PACKAGECONFIG support
- Submitter: From: Telukula Jeevan Kumar Sahu <j-sahu@ti.com>
- Date: Date: Thu, 22 Jan 2026 18:01:06 +0530
- Num Patches: 2
- Mailing List (public inbox) Commit SHA: efbf32cf27397d9eac5ee7adcbc757e303b1249b
Applied to:
- Repository: lcpd-prc-meta-arago
- Base Branch: master-wip
- Commit Author: Ryan Eatmon <reatmon@ti.com>
- Commit Subject: open62541: Upodate for v1.4
- Commit SHA: bf47628886392400787668c9b203334ce00e2e4d
Patches
----------------------------------------
All patches applied
=========================================================
check-yocto-repo: PASS
=========================================================
master
=====================
PASS
=========================================================
yocto-check-layers: PASS
=========================================================
master - PASS
=====================
All checks passed
diff --git a/meta-arago-extras/conf/layer.conf b/meta-arago-extras/conf/layer.conf index 3927a913..1a4a5bdd 100644 --- a/meta-arago-extras/conf/layer.conf +++ b/meta-arago-extras/conf/layer.conf @@ -22,3 +22,7 @@ LAYERDEPENDS_meta-arago-extras = " \ networking-layer \ openembedded-layer \ " + +BBFILES_DYNAMIC += " \ + qt6-layer:${LAYERDIR}/dynamic-layers/qt6-layer/recipes*/*/*.bbappend \ +" diff --git a/meta-arago-extras/dynamic-layers/qt6-layer/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.26-arago.inc b/meta-arago-extras/dynamic-layers/qt6-layer/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.26-arago.inc new file mode 100644 index 00000000..8c89e68a --- /dev/null +++ b/meta-arago-extras/dynamic-layers/qt6-layer/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.26-arago.inc @@ -0,0 +1,7 @@ +PACKAGECONFIG:append = " qt6" + +# Qt tools like rcc, moc and uic are located in /usr/libexec, instead of +# /usr/bin, which is not in PATH by default. +do_configure:prepend:class-target() { + export PATH=${STAGING_DIR_NATIVE}${libexecdir}:$PATH +} diff --git a/meta-arago-extras/dynamic-layers/qt6-layer/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.26.%.bbappend b/meta-arago-extras/dynamic-layers/qt6-layer/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.26.%.bbappend new file mode 100644 index 00000000..0ceb558c --- /dev/null +++ b/meta-arago-extras/dynamic-layers/qt6-layer/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.26.%.bbappend @@ -0,0 +1,4 @@ +GSTREAMER1p0_PLUGINS_GOOD_1p26_ARAGO = "" +GSTREAMER1p0_PLUGINS_GOOD_1p26_ARAGO:arago = "gstreamer1.0-plugins-good_1.26-arago.inc" + +require ${GSTREAMER1p0_PLUGINS_GOOD_1p26_ARAGO}
GStreamer's Qt6 qmlgl plugin enables video rendering in Qt6/QML applications by providing GstGLVideoItem QML element. This plugin is essential for integrating GStreamer pipelines with Qt6 Quick/QML user interfaces. Enable Qt6 PACKAGECONFIG which are added in oe-core[0] to build the qmlgl plugin when qt6-layer is present utilizing dynamic-layer. [0]: https://git.openembedded.org/openembedded-core/commit/?h=master-next&id=0a6acd465deb1ee2d30e26b7662ad4abdc459bdb Signed-off-by: Telukula Jeevan Kumar Sahu <j-sahu@ti.com> --- Changes in v3: Rename files to arago standard and upstream qt6 packageconfigs Changes in v2: fix PRC failures meta-arago-extras/conf/layer.conf | 4 ++++ .../gstreamer/gstreamer1.0-plugins-good_1.26-arago.inc | 7 +++++++ .../gstreamer/gstreamer1.0-plugins-good_1.26.%.bbappend | 4 ++++ 3 files changed, 15 insertions(+) create mode 100644 meta-arago-extras/dynamic-layers/qt6-layer/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.26-arago.inc create mode 100644 meta-arago-extras/dynamic-layers/qt6-layer/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.26.%.bbappend