Updating UBL Using U-Boot
1. Set device network information as below on Uboot prompt.
setenv serverip <TFTP SERVER IP ADDRESS>
setenv ipaddr <DEVICE IP ADDRESS>
setenv ethaddr <DEVICE MAC ADDRESS>
2. Put the the UBL binary file to the directory /tftpboot at <TFTP SERVER >
3. Run command as below to copy the UBL to the device.
tftp 0x80700000 ubl.bin
4. Now copy UBL from RAM to NAND by following commands.
nand erase 0x04000 0x04000
nand write 0x80700000 0x04000 0x04000
5. Reset the board