This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

PROCESSOR-SDK-AM437X: PROCESSOR-SDK-AM437X

Part Number: PROCESSOR-SDK-AM437X

Tool/software:

Hello, I'm working on building the SDK with Yocto referring the below link.

https://software-dl.ti.com/processor-sdk-linux/esd/AM437X/09_03_05_02/exports/docs/linux/Overview_Building_the_SDK.html

And I entered the command as recommended.

# sudo apt-get update
# sudo apt-get -f -y install \
git build-essential diffstat texinfo gawk chrpath socat doxygen \
dos2unix python3 bison flex libssl-dev u-boot-tools mono-devel \
mono-complete curl python3-distutils repo pseudo python3-sphinx \
g++-multilib libc6-dev-i386 jq git-lfs pigz zstd liblz4-tool \
cpio file zstd lz4

# sudo dpkg-reconfigure dash

# git clone git.ti.com/.../oe-layersetup.git tisdk
# cd tisdk
# ./oe-layertool-setup.sh -f configs/processor-sdk/processor-sdk-kirkstone-09.02.01.10-config.txt

# cd build
# . conf/setenv
# MACHINE=am437x-evm bitbake -k tisdk-default-image

After the building is finished, I can't find the file system in deploy-ti directory(~/tisdk/build/deploy-ti/images/am437x-evm).
Did I make a mistake or miss anything?

  • WR,

    Did I make a mistake or miss anything?

    Can you please provide a build log?

    After the building is finished, I can't find the file system in deploy-ti directory(~/tisdk/build/deploy-ti/images/am437x-evm).

    What is the contents of this folder?

    The file systems are usually contained in the below files (example is from AM335x SDK v9.3, this will look similar for AM437x SDK v9.3). But there shouild be countless other files such as U-Boot and Kernel images.

    $ ll deploy-ti/images/am335x-evm/*rootfs*
    -rw-r--r-- 2 a0797059 a0797059     130377 Jan  6  2025 deploy-ti/images/am335x-evm/tisdk-default-image-am335x-evm-20250107054347.rootfs.manifest
    -rw-r--r-- 2 a0797059 a0797059  491277068 Jan  6  2025 deploy-ti/images/am335x-evm/tisdk-default-image-am335x-evm-20250107054347.rootfs.tar.xz
    -rw-r--r-- 2 a0797059 a0797059         94 Jan  6  2025 deploy-ti/images/am335x-evm/tisdk-default-image-am335x-evm-20250107054347.rootfs.tar.xz.md5sum
    -rw-r--r-- 2 a0797059 a0797059 1536425984 Jan  6  2025 deploy-ti/images/am335x-evm/tisdk-default-image-am335x-evm-20250107054347.rootfs.ubi
    -rw-r--r-- 2 a0797059 a0797059 1488158720 Jan  6  2025 deploy-ti/images/am335x-evm/tisdk-default-image-am335x-evm-20250107054347.rootfs.ubifs
    -rw-r--r-- 2 a0797059 a0797059       4182 Jan  6  2025 deploy-ti/images/am335x-evm/tisdk-default-image-am335x-evm-20250107054347.rootfs.wic.bmap
    -rw-r--r-- 2 a0797059 a0797059  508747760 Jan  6  2025 deploy-ti/images/am335x-evm/tisdk-default-image-am335x-evm-20250107054347.rootfs.wic.xz

    Regards, Andreas