| Message ID | 20260625160659.29619-1-afd@ti.com |
|---|---|
| State | New |
| Headers | show |
| Series | [meta-ti,master/wrynose,v3,1/3] libdce: Runtime depend on IPU firmware not the other way around | expand |
meta-ti / na / 20260625160659.29619-1-afd PRC Results: PASS ========================================================= check-yocto-patches: PASS ========================================================= Patches ---------------------------------------- All patches passed ========================================================= apply-yocto-patch: PASS ========================================================= master ===================== Summary: - Patch Series: [meta-ti][master/wrynose][PATCH v3 1/3] libdce: Runtime depend on IPU firmware not the other way around - Submitter: From: Andrew Davis <afd@ti.com> - Date: Date: Thu, 25 Jun 2026 11:06:57 -0500 - Num Patches: 3 - Mailing List (public inbox) Commit SHA: 240f707c990e4699e88f9b292a38ac5d90203801 Applied to: - Repository: lcpd-prc-meta-ti - Base Branch: master-wip - Commit Author: Ryan Eatmon <reatmon@ti.com> - Commit Subject: TEST: linux-ti-staging: Add testing dtbo and build command - Commit SHA: 07bd4c181e2a400d4375ddad7a20fbba6578b133 Patches ---------------------------------------- All patches applied wrynose ===================== Summary: - Patch Series: [meta-ti][master/wrynose][PATCH v3 1/3] libdce: Runtime depend on IPU firmware not the other way around - Submitter: From: Andrew Davis <afd@ti.com> - Date: Date: Thu, 25 Jun 2026 11:06:57 -0500 - Num Patches: 3 - Mailing List (public inbox) Commit SHA: 240f707c990e4699e88f9b292a38ac5d90203801 Applied to: - Repository: lcpd-prc-meta-ti - Base Branch: wrynose-wip - Commit Author: Suhaas Joshi <s-joshi@ti.com> - Commit Subject: tfa: Update TF-A for K3 devices to 2.15 tag - Commit SHA: 88ce8160ec6c5804820555e0bc29dba23059a4a1 Patches ---------------------------------------- All patches applied ========================================================= check-yocto-repo: PASS ========================================================= master ===================== PASS wrynose ===================== PASS ========================================================= yocto-check-layers: PASS ========================================================= master - PASS ===================== All checks passed wrynose - PASS ===================== All checks passed
diff --git a/meta-ti-extras/recipes-bsp/ipumm-fw/ipumm-fw_git.bb b/meta-ti-extras/recipes-bsp/ipumm-fw/ipumm-fw_git.bb index bca91df8..246255e3 100644 --- a/meta-ti-extras/recipes-bsp/ipumm-fw/ipumm-fw_git.bb +++ b/meta-ti-extras/recipes-bsp/ipumm-fw/ipumm-fw_git.bb @@ -9,8 +9,6 @@ inherit features_check REQUIRED_MACHINE_FEATURES = "mmip" -RDEPENDS:${PN} = "libdce" - SRC_URI = "git://git.ti.com/git/ivimm/ipumm.git;protocol=https;branch=master" SRCREV = "df4c50aecc9aad7ab3eb1ca9ebacfe473fcad7c5" diff --git a/meta-ti-extras/recipes-multimedia/libdce/libdce_3.00.15.00.bb b/meta-ti-extras/recipes-multimedia/libdce/libdce_3.00.15.00.bb index 2ae44086..afbfd1cd 100644 --- a/meta-ti-extras/recipes-multimedia/libdce/libdce_3.00.15.00.bb +++ b/meta-ti-extras/recipes-multimedia/libdce/libdce_3.00.15.00.bb @@ -5,6 +5,7 @@ LIC_FILES_CHKSUM = "file://libdce.h;beginline=1;endline=31;md5=0a398cf815b8b5f31 inherit autotools pkgconfig DEPENDS = "libdrm ti-ipc" +RDEPENDS:${PN} += "ipumm-fw" SRC_URI = "git://git.ti.com/git/omapzoom/libdce.git;protocol=https;branch=master"
The DCE library depends on the firmware to function, the firmware has no dependency on any one userspace library. Switch the runtime dependency around here. Signed-off-by: Andrew Davis <afd@ti.com> --- Changes for v3: - None Changes for v2: - Use += to avoid overwriting any existing RDEPENDS meta-ti-extras/recipes-bsp/ipumm-fw/ipumm-fw_git.bb | 2 -- meta-ti-extras/recipes-multimedia/libdce/libdce_3.00.15.00.bb | 1 + 2 files changed, 1 insertion(+), 2 deletions(-)