Hello Moteen
On 4/16/2025 1:23 PM, Moteen Shah wrote:
Hey Simon,
I missed some essential build instructions I should have given to you,
apologies.
I assume our u-boot public document should capture this information,
It not, then please fix
1. Clone ti-linux-firmware:
https://git.ti.com/git/processor-firmware/ti-linux-firmware.git and
switch to ti-linux-firmware-next branch
2. Clone U-Boot: https://github.com/Jamm02/U-Boot-patchwork
3. Set variables :
$ export CC64=aarch64-linux-gnu-
$ export LNX_FW_PATH=path/to/ti-linux-firmware
$ export UBOOT_CFG_CORTEXA=j7200_evm_a72_defconfig
4. Inside U-Boot source:
$ touch bl31.bin
$ touch tee-raw.bin
$ make $UBOOT_CFG_CORTEXA
$ make CROSS_COMPILE=$CC64 BINMAN_INDIRS=$LNX_FW_PATH \
BL31=bl31.bin \
TEE=tee-raw.bin
Let me know if this works.
Regards,
Moteen
On 15/04/25 00:18, Simon Glass wrote:
Hi Moteen,
On Thu, 10 Apr 2025 at 05:39, Moteen Shah <m-s...@ti.com> wrote:
Hey Simon,
Is the problem discussed in the thread an actual bug or am I missing
something in the implementation?
Regards,
Moteen
On 03/04/25 11:51, Moteen Shah wrote:
Hey Simon,
On 03/04/25 00:52, Simon Glass wrote:
Hi Moteen,
On Wed, 2 Apr 2025 at 22:01, Moteen Shah <m-s...@ti.com> wrote:
Hey Simon,
On 29/03/25 05:17, Simon Glass wrote:
Hi Moteen,
On Thu, 27 Mar 2025 at 08:06, Moteen Shah <m-s...@ti.com> wrote:
Add a function to scan through all the nodes in the device-tree
recusively for bootph-* property. If found, propagate it to all
of its parent nodes up the hierarchy.
Signed-off-by: Moteen Shah <m-s...@ti.com>
---
[..]