| Message ID | 20260225025155.2981821-1-reatmon@ti.com |
|---|---|
| State | Accepted |
| Delegated to: | Ryan Eatmon |
| Headers | show |
| Series | [meta-ti,master,1/4,v2] ti-rpmsg-char: Set DISABLE_STATIC = "" | expand |
meta-ti / na / 20260225025155.2981821-1-reatmon PRC Results: PASS ========================================================= check-yocto-patches: PASS ========================================================= Patches ---------------------------------------- All patches passed ========================================================= apply-yocto-patch: PASS ========================================================= master ===================== Summary: - Patch Series: [meta-ti][master][PATCH 1/4 v2] ti-rpmsg-char: Set DISABLE_STATIC = "" - Submitter: From: Ryan Eatmon <reatmon@ti.com> - Date: Date: Tue, 24 Feb 2026 20:51:52 -0600 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: 1cd812d2fa0f337818a51c3d0204dd0741048fef Applied to: - Repository: lcpd-prc-meta-ti - Base Branch: master-next - Commit Author: LCPD Automation Script <lcpdbld@list.ti.com> - Commit Subject: CI/CD Auto-Merger: cicd.master-ltsprep.202602241800 - Commit SHA: 4cce297bca77323fbc8ba600e7290a9759397ad2 Patches ---------------------------------------- All patches applied ========================================================= check-yocto-repo: PASS ========================================================= master ===================== PASS ========================================================= yocto-check-layers: PASS ========================================================= master - PASS ===================== All checks passed
On 2/24/26 8:51 PM, Ryan Eatmon via lists.yoctoproject.org wrote: > As of [1], static libs are disabled by default. But this package relies > on static libs, so we need to allow for building them. > Too bad this project uses static libs at all, there is no reason for it, I even have a PR[0] to switch this project to CMake and over to using dynamic libs that has been sitting for +1 year :( (for those interested with access to our internal bitbucket) [0] https://bitbucket.itg.ti.com/projects/RPMSG/repos/ti-rpmsg-char/pull-requests/14/overview > [1] https://git.openembedded.org/openembedded-core/commit/?id=03fc931bfe9ea3fa9f33553e6020cbc067b24291 > > Signed-off-by: Ryan Eatmon <reatmon@ti.com> > --- > v2: Moved the setting from the .inc into the .bb file. > > meta-ti-bsp/recipes-ti/ipc/ti-rpmsg-char_git.bb | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/meta-ti-bsp/recipes-ti/ipc/ti-rpmsg-char_git.bb b/meta-ti-bsp/recipes-ti/ipc/ti-rpmsg-char_git.bb > index 63711a3b..50565300 100644 > --- a/meta-ti-bsp/recipes-ti/ipc/ti-rpmsg-char_git.bb > +++ b/meta-ti-bsp/recipes-ti/ipc/ti-rpmsg-char_git.bb > @@ -5,3 +5,5 @@ require ti-rpmsg-char.inc > inherit autotools pkgconfig > > PR = "r0" > + > +DISABLE_STATIC = "" > > > > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. > View/Reply Online (#19601): https://lists.yoctoproject.org/g/meta-ti/message/19601 > Mute This Topic: https://lists.yoctoproject.org/mt/117988928/3619733 > Group Owner: meta-ti+owner@lists.yoctoproject.org > Unsubscribe: https://lists.yoctoproject.org/g/meta-ti/unsub [afd@ti.com] > -=-=-=-=-=-=-=-=-=-=-=- >
diff --git a/meta-ti-bsp/recipes-ti/ipc/ti-rpmsg-char_git.bb b/meta-ti-bsp/recipes-ti/ipc/ti-rpmsg-char_git.bb index 63711a3b..50565300 100644 --- a/meta-ti-bsp/recipes-ti/ipc/ti-rpmsg-char_git.bb +++ b/meta-ti-bsp/recipes-ti/ipc/ti-rpmsg-char_git.bb @@ -5,3 +5,5 @@ require ti-rpmsg-char.inc inherit autotools pkgconfig PR = "r0" + +DISABLE_STATIC = ""
As of [1], static libs are disabled by default. But this package relies on static libs, so we need to allow for building them. [1] https://git.openembedded.org/openembedded-core/commit/?id=03fc931bfe9ea3fa9f33553e6020cbc067b24291 Signed-off-by: Ryan Eatmon <reatmon@ti.com> --- v2: Moved the setting from the .inc into the .bb file. meta-ti-bsp/recipes-ti/ipc/ti-rpmsg-char_git.bb | 2 ++ 1 file changed, 2 insertions(+)