| Message ID | 20260827213836.2029060-1-reatmon@ti.com |
|---|---|
| State | New |
| Headers | show |
| Series | [meta-ti,master/wrynose] linux-ti-staging-rt_6.18: Add ARM32 RT branch | expand |
meta-ti / na / 20260827213836.2029060-1-reatmon PRC Results: PASS ========================================================= check-yocto-patches: PASS ========================================================= Patches ---------------------------------------- All patches passed ========================================================= apply-yocto-patch: PASS ========================================================= master ===================== Summary: - Patch Series: [meta-ti][master/wrynose][PATCH] linux-ti-staging-rt_6.18: Add ARM32 RT branch - Submitter: From: Ryan Eatmon <reatmon@ti.com> - Date: Date: Thu, 27 Aug 2026 16:38:36 -0500 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: f685e9428bec8b34c12d2900ccee7cadea104758 Applied to: - Repository: lcpd-prc-meta-ti - Base Branch: master-wip - Commit Author: Ryan Eatmon <reatmon@ti.com> - Commit Subject: linux-ti-staging-rt_6.18: Add ARM32 RT branch - Commit SHA: b5d413f32d36d804e1b5f65f4c8d07aefb9d966d Patches ---------------------------------------- All patches applied wrynose ===================== Summary: - Patch Series: [meta-ti][master/wrynose][PATCH] linux-ti-staging-rt_6.18: Add ARM32 RT branch - Submitter: From: Ryan Eatmon <reatmon@ti.com> - Date: Date: Thu, 27 Aug 2026 16:38:36 -0500 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: f685e9428bec8b34c12d2900ccee7cadea104758 Applied to: - Repository: lcpd-prc-meta-ti - Base Branch: wrynose-wip - Commit Author: Ryan Eatmon <reatmon@ti.com> - Commit Subject: linux-ti-staging-rt_6.18: Add ARM32 RT branch - Commit SHA: d6f9a95ac6ae5b95c96294bb04e722f0d19ac960 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-bsp/recipes-kernel/linux/linux-ti-staging-rt_6.18.bb b/meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-rt_6.18.bb index a979668d..71fd330d 100644 --- a/meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-rt_6.18.bb +++ b/meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-rt_6.18.bb @@ -6,4 +6,23 @@ KERNEL_LOCALVERSION:append = "-rt" # This will have priority over generic non-rt path FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}-6.18:" +BRANCH_ARM64 = "ti-linux-6.18.y" +BRANCH = "${BRANCH_ARM64}" + +BRANCH_ARM32 = "ti-rt-linux-6.18.y-arm32" +SRCREV_ARM32 = "65cf808e0410dd16ff0bb1f03a1bb7e67cbd6c32" +PV_ARM32 = "6.18.38+git" + +BRANCH:ti33x = "${BRANCH_ARM32}" +BRANCH:ti43x = "${BRANCH_ARM32}" +BRANCH:am57xx = "${BRANCH_ARM32}" + +SRCREV:ti33x = "${SRCREV_ARM32}" +SRCREV:ti43x = "${SRCREV_ARM32}" +SRCREV:am57xx = "${SRCREV_ARM32}" + +PV:ti33x = "${PV_ARM32}" +PV:ti43x = "${PV_ARM32}" +PV:am57xx = "${PV_ARM32}" + include ${@ 'recipes-kernel/linux/ti-extras-rt.inc' if d.getVar('TI_EXTRAS') else ''}
While all ARM64 devices use the same branch for RT and non-RT builds, the ARM32 devices have a separate branch for RT Kernel which is "ti-rt-linux-6.18.y-arm32". Update the BRANCH, SRCREV and PV for ARM32 devices for RT builds. Signed-off-by: Ryan Eatmon <reatmon@ti.com> --- .../linux/linux-ti-staging-rt_6.18.bb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+)