| Message ID | 20260313163803.1352821-1-t-lannynd@ti.com |
|---|---|
| State | Under Review |
| Delegated to: | Ryan Eatmon |
| Headers | show |
| Series | [meta-arago,master,v2] arago.conf: Enable OpenSSL support for HTTPS protocol on ffmpeg | expand |
meta-arago / na / 20260313163803.1352821-1-t-lannynd PRC Results: FAIL ========================================================= check-yocto-patches: PASS ========================================================= Patches ---------------------------------------- All patches passed ========================================================= apply-yocto-patch: PASS ========================================================= master ===================== Summary: - Patch Series: [meta-arago][master][PATCH v2] arago.conf: Enable OpenSSL support for HTTPS protocol on ffmpeg - Submitter: From: Thorsten Lannynd <t-lannynd@ti.com> - Date: Date: Fri, 13 Mar 2026 11:38:03 -0500 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: e989fd2037ac6ce5dcc302c77dc2d41c23bedc5d Applied to: - Repository: lcpd-prc-meta-arago - Base Branch: master-next - Commit Author: LCPD Automation Script <lcpdbld@list.ti.com> - Commit Subject: CI/CD Auto-Merger: cicd.master.202603091800 - Commit SHA: 27f3d88f1cbc33e107604da7df01340b8a67620f Patches ---------------------------------------- All patches applied ========================================================= check-yocto-repo: PASS ========================================================= master ===================== PASS ========================================================= yocto-check-layers: FAIL ========================================================= master - FAIL ===================== ERROR: Nothing RPROVIDES 'weston-dev' (but <build-dir>/sources/meta-arago/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-graphics-sdk-target.bb RDEPENDS on or otherwise requires it) ERROR: Required build target 'meta-world-pkgdata' has no buildable providers. ERROR: Nothing RPROVIDES 'weston-init' (but <build-dir>/sources/meta-arago/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-graphics.bb RDEPENDS on or otherwise requires it)
diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf index 43d4db53..a021e370 100644 --- a/meta-arago-distro/conf/distro/arago.conf +++ b/meta-arago-distro/conf/distro/arago.conf @@ -121,6 +121,9 @@ PACKAGECONFIG:append:pn-kmscube = " gstreamer" # Disable opengl for opencl-cts by default PACKAGECONFIG:remove:pn-opencl-cts = "opengl gles vulkan" +# Add OpenSSL support for HTTPS protocol on ffmpeg +PACKAGECONFIG:append:pn-ffmpeg = " openssl" + # Configure RAMFS for jailhouse linux-demo JH_RAMFS_IMAGE = "arago-jailhouse-inmate"
Enable OpenSSL in ffmpeg to support HTTPS streaming and secure media fetching, allowing ffmpeg to handle HTTPS URLs directly such as Google Test Videos. Signed-off-by: Thorsten Lannynd <t-lannynd@ti.com> --- v2: - Use arago.conf instead of creating new bbappend files meta-arago-distro/conf/distro/arago.conf | 3 +++ 1 file changed, 3 insertions(+)