HOWTO flash images ================== Flashing images requires a TFTP server. This README assumes files are accesable in a /cc1000 subdirectory of the tftp root directory. Change this if your setup is different. Flashing ins done from the U-Boot command prompt U-Boot ------ tftpboot 0x80000 /cc1000/u-boot_xxxx.bin protect off 0xfff00000 +0x40000 erase 0xfff00000 +0x20000 or erase 0xfff00000 +0x40000 (this also erase environment) cp.b 0x80000 0xfff00000 (use length reported by tftpboot rounded up) protect on 0xfff00000 +0x40000 Kernel ------ tftpboot 0x80000 /cc1000/uImage_xxxx protect off 0xfff40000 0xffffffff erase 0xfff40000 0xffffffff cp.b 0x80000 0xfff40000 {length-reported-by-tftpboot} protect on 0xfff40000 0xffffffff Root FS ------- tftpboot 0x80000 /cc1000/rootfs_xxxx.img protect off 0xffc00000 +0x300000 erase 0xffc00000 +0x300000 cp.b 0x80000 0xffc00000 0x300000 protect on 0xffc00000 +0x300000 Full flash ---------- tftpboot 0x80000 /cc1000/cc1000_xxxx.img protect off all erase all cp.b 0x80000 0xffc00000 0x400000 protect on 0xffc00000 +0x400000