Hello,
we are able to flash the uboot binary from the kernel using the below dd command,
$ echo 0 | tee /sys/block/mmcblk2boot0/force_ro
$ dd if=flash.bin of=/dev/mmcblk2boot0 bs=1k seek=0 conv=fsync
$ echo 1 | tee /sys/block/mmcblk2boot0/force_ro
It is working fine.
In our board have two boot partition like,
/dev/mmcblk2boot0
/dev/mmcblk2boot1
But the UUU tool flashes the bootloader in this /dev/mmcblk2boot0 partition only. Any procedure available for flashing the bootloader in both the /dev/mmcblk2boot0 and /dev/mmcblk2boot1 partitions in the UUU tool?
Updating U-Boot with an mmcblk2boot0/mmcblk2boot1 strategy is available?. If available, please share with me the procedure for this.
Query: Currently, the bootloader boots from the /dev/mmcblk2boot0 partition. This bootloader may be corrupted; how do I recover the board from the /dev/mmcblk2boot1 partition?