BeagleY-AI stock das U-Boot and Linux defconfig file names?

Hi, I have successfully booted up my BeagleY-AI! Very nice board and very nice U-Boot menu for NVMe setup, Thanks!

According to the image file download page [BeagleY-AI Debian 12.6 2024-07-11 XFCE - BeagleBoard], u-boot and linux repos are provided. However, I have looked into current documents for the board and the repos’ files, there’s no tutorial etc for a proper config I could find:

files://uboot/configs

  • am62x_… Suppose to work but not sure, not tested.
  • j721e_beagleboneai64… a close one but specifically named boardname, so pass
  • ??? something else or manual config?

Please setup a build page or indicate a proper config, thanks in advance.

Hi, I have partially figured out, I need to read doc from TI: [3.1.1.1. General Information — Processor SDK Linux for AM67A Documentation]

by following the instructions I am able to build a j772s_evm u-boot image.

And I have checked out the wrong branch from repo, sorry for the inconvenience, I will try:

make ARCH=arm O=<output directory>/a53 j722s_evm_a53_defconfig am67a_beagley_ai_a53.config

make ARCH=arm O=<output directory>/a53 CROSS_COMPILE="$CROSS_COMPILE_64" CC="$CC_64" BL31=${PREBUILT_IMAGES}/bl31.bin TEE=${PREBUILT_IMAGES}/bl32.bin BINMAN_INDIRS=${PREBUILT_IMAGES}

Please correct me if this is incorrect. Thanks.