I want to create all the partition manually for that I am referring following document 4.3.3 for partitioning sd card manually instead of wic image.
https://www.nxp.com/docs/en/user-guide/IMX_LINUX_USERS_GUIDE.pdf
I have created partition using 4.3.3 Partitioning the SD/MMC card. I can see following two partition after this step.
/dev/sdb1
/dev/sdb2
I have formatted 2 partitions using following commands.
sudo mkfs.vfat /dev/sdb1
sudo mkfs.ext3 /dev/sdb2
Then I have flashed flash.bin image using following command.
sudo dd if=flash.bin of=/dev/sdb bs=1k seek=32 /// should I use /dev/sdb or /dev/sdb1 ?
after this step, I can not see print of uboot on terminal.
Is there a way to check this image flashed correctly as I can not see this image in both partition?