Hello,
I'm facing issues with booting up my system on the S32G274AEVB board using Yocto BSP version 39.0. Here are the steps I've followed:
1-Getting the Yocto image:
mkdir ~/bin
curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
PATH=${PATH}:~/bin
mkdir fsl-auto-yocto-bsp
cd fsl-auto-yocto-bsp
repo init -u https://github.com/nxp-auto-linux/auto_yocto_bsp -b release/bsp39.0
repo sync
2-Building Linux BSP:
./sources/meta-alb/scripts/host-prepare.sh
source nxp-setup-alb.sh -m s32g274aevb
bitbake fsl-image-auto
3-Writing images:
sudo dd if=./fsl-image-auto-s32g274aevb.sdcard of=/dev/mmcblk0 bs=1M && sync
sudo minicom -D /dev/ttyUSB0
However, the system doesn't boot properly, and nothing happens on my board. I also tried manually building Linux BSP components, but it didn't work. I switched to version 36.0, but the issue persists.
Could someone please help me? Thanks in advance!