diff mbox series

[meta-arago,master/scarthgap,1/1] meta-arago-distro: Add support for AM62L

Message ID 20250204135916.974102-2-c-shilwant@ti.com
State Under Review
Delegated to: Ryan Eatmon
Headers show
Series Add support for AM62L | expand

Commit Message

Chirag Shilwant Feb. 4, 2025, 1:59 p.m. UTC
- AM62L is a k3 platform which doesn't have a Cortex-R5 core.
Hence, remove multiconfig dependency of K3R5 toolchain for am62lxx.

- Add bl1.bin in DEPLOY_IMAGES_NAME to ensure that the binary
is deployed under board-support/prebuilt-images of tisdk-core-bundle.

Signed-off-by: Chirag Shilwant <c-shilwant@ti.com>
---
 meta-arago-distro/classes/tisdk-bundle.bbclass             | 1 +
 meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb | 1 +
 2 files changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/meta-arago-distro/classes/tisdk-bundle.bbclass b/meta-arago-distro/classes/tisdk-bundle.bbclass
index 83fe31a0..a554a261 100644
--- a/meta-arago-distro/classes/tisdk-bundle.bbclass
+++ b/meta-arago-distro/classes/tisdk-bundle.bbclass
@@ -42,6 +42,7 @@  TOOLCHAIN_SUFFIX ?= "-sdk"
 
 # K3R5 baremetal toolchain recipe(s) to build and package as part of the tisdk bundle
 TOOLCHAIN_MC_DEP = ""
+TOOLCHAIN_MC_DEP:am62lxx = ""
 TOOLCHAIN_MC_DEP:k3 = "mc::k3r5:meta-toolchain-arago"
 TISDK_TOOLCHAIN_K3R5 ?= "${TOOLCHAIN_MC_DEP}"
 TOOLCHAIN_K3R5_SUFFIX ?= "-sdk"
diff --git a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb
index edbea302..6c2afb9d 100644
--- a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb
+++ b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb
@@ -11,6 +11,7 @@  DEPLOY_SPL_NAME:omapl138 = ""
 DEPLOY_SPL_NAME:k3 = "tispl.bin tiboot3.bin"
 
 DEPLOY_IMAGES_NAME:k3 = "bl31.bin bl32.bin Image fitImage fitImage-its-${MACHINE}"
+DEPLOY_IMAGES_NAME:append:am62lxx = " bl1.bin"
 DEPLOY_IMAGES_NAME:append:am65xx = " sysfw.itb"
 DEPLOY_IMAGES_NAME:append:j721e = " sysfw.itb"
 DEPLOY_IMAGES_NAME:append:am65xx-evm = " sysfw-am65x_sr2-gp-evm.itb"