Flash_Write_Command 1.5 KB

12345678910111213141516171819
  1. // By SD
  2. nand erase.chip;
  3. mw 0x80000000 0xffffffff 0x00080000;fatload mmc 0 0x80000000 MLO;nand erase 0x00000000 0x00080000;nand write 0x80000000 0x00000000 0x00080000;
  4. mw 0x80000000 0xffffffff 0x00100000;fatload mmc 0 0x80000000 u-boot.img;nand erase 0x00080000 0x00100000;nand write 0x80000000 0x00080000 0x00100000;
  5. mw 0x80000000 0xffffffff 0x00080000;fatload mmc 0 0x80000000 am335x-evm.dtb;nand erase 0x00300000 0x00080000;nand write 0x80000000 0x00300000 0x00080000;
  6. mw 0x80000000 0xffffffff 0x00A00000;fatload mmc 0 0x80000000 zimage;nand erase 0x00400000 0x00A00000;nand write 0x80000000 0x00400000 0x00A00000;
  7. mw 0x80000000 0xffffffff 0x03000000;fatload mmc 0 0x80000000 ramdisk.gz;nand erase 0x03000000 0x03000000;nand write 0x80000000 0x03000000 0x03000000;
  8. mw 0x80000000 0xffffffff 0x00600000;fatload mmc 0 0x80000000 FactoryConfig.bin;nand erase 0x09C00000 0x00600000;nand write 0x80000000 0x09C00000 0x00600000;
  9. // By TFTP
  10. nand erase.chip;
  11. tftp 0x80000000 MLO;nand erase 0x00000000 0x00080000;nand write 0x80000000 0x00000000 0x00080000;
  12. tftp 0x80000000 u-boot.img;nand erase 0x00080000 0x00100000;nand write 0x80000000 0x00080000 0x00100000;
  13. tftp 0x80000000 am335x-evm.dtb;nand erase 0x00300000 0x00080000;nand write 0x80000000 0x00300000 0x00080000;
  14. tftp 0x80000000 zimage;nand erase 0x00400000 0x00A00000;nand write 0x80000000 0x00400000 0x00A00000;
  15. tftp 0x80000000 ramdisk.gz;nand erase 0x03000000 0x03000000;nand write 0x80000000 0x03000000 0x03000000;
  16. tftp 0x80000000 FactoryConfig.bin;nand erase 0x09C00000 0x00600000;nand write 0x80000000 0x09C00000 0x00600000;