Hi
trying to see what exactly needs to happen for the overlay dtb file to be used. It looks like you only have to set the below u-boot environment with the TI SDK and it will use the overlay dtb file. so for example
setenv name_overlays k3-j721e-vision-apps.dtbo
saveenv
then it should use the overly file that is mentioned above. Also the dtbo should be in the /boot directory.
Is there anything else that needs to be set? The reason for the question is because of the highlighted text below. I am not sure where is the variable overlay is set? i assume it is set in u-boot but like to understand the details as to what is required for the overlays to be used.
get_overlay_mmc=fdt address ${fdtaddr};fdt resize 0x100000;for overlay in $name_overlays;do;load mmc ${bootpart} ${overlayaddr} ${bootdir}/${overlay};fdt apply ${overlayaddr};done;
Thanks