How to flash the uboot, kernel and RootFS on qspi using u-boot commands
=> tftp $loadaddr uboot-*-qspi.img
=> sf probe
=> sf update $loadaddr 0 $filesize
use these following commands only if the qspi has not yet been written and initialized to prevent the write counter from being overwritten
=> tftp $loadaddr root.ubi
=> sf erase RootFS 3800000
sf write ${loadaddr} RootFS ${filesize}