- Currently $ make sysfw-image DEVICE_TYPE=hs-fs generates a tiboot3 for HS-FS with the name tiboot3-<SOC>-gp-evm.bin as k3-image-gen doesn't have hs-fs override. To solve this issue, let's pass DEVICE_TYPE_SEC as SOC_TYPE while building sysfw-image.
- This changes will be reflected only while building sysfw-image for am62xx-evm, am62xx-lp-evm, am64xx-evm and am62axx-evm. Signed-off-by: Chirag Shilwant <[email protected]> --- .../ti-tisdk-makefile/ti-tisdk-makefile/Makefile_sysfw-image | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_sysfw-image b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_sysfw-image index 1f497261..80f8f701 100644 --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_sysfw-image +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_sysfw-image @@ -52,7 +52,7 @@ sysfw-image: linux-dtbs @echo Building SYSFW Image @echo ============================= @cd board-support; cd `find . -maxdepth 1 -type d -name "*k3-image*"`; \ - make SBL=$(SBL_PATH) $(SYSFW_MAKEARGS) CROSS_COMPILE=$(CROSS_COMPILE_ARMV7) PATH=$(PATH):$(LINUXKERNEL_INSTALL_DIR)/scripts/dtc + make SBL=$(SBL_PATH) $(SYSFW_MAKEARGS) CROSS_COMPILE=$(CROSS_COMPILE_ARMV7) PATH=$(PATH):$(LINUXKERNEL_INSTALL_DIR)/scripts/dtc SOC_TYPE=$(DEVICE_TYPE_SEC) sysfw-image_clean: @echo ============================= -- 2.34.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14222): https://lists.yoctoproject.org/g/meta-arago/message/14222 Mute This Topic: https://lists.yoctoproject.org/mt/97084882/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
