* fanda z101 리눅스 어드레스영역 *sf probe
// kernel
sf read 0x2080000 0x400000 0x500000
// device tree
sf read 0x2000000 0x900000 0x20000
// radmdisk
sf read 0x4000000 0x920000 0x5E0000
// boot cmd
bootm 0x2080000 0x4000000 0x2000000
//
// TFT Download 명령
tftpboot 0x2080000 uImage
tftpboot 0x2000000 devicetree.dtb
tftpboot 0x4000000 new.uramdisk.image.gz
// Flash memory Download 및 라이트 명령
sf probe 0
tftpboot 0x2080000 uImage
sf erase 0x400000 0x500000
sf write 0x2080000 0x400000 0x500000
// rasmdisk write
sf probe 0
tftpboot 0x4000000 new.uramdisk.image.gz
sf erase 0x920000 0x5e0000
sf write 0x4000000 0x920000 0x5e0000
// device tree
sf probe 0
tftpboot 0x4000000 devicetree.dtb
sf erase 0x900000 0x20000
sf write 0x4000000 0x900000 0x20000