Advertisement
trini

devkit8000 flash commands

Nov 8th, 2011
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. ## U-Boot 1.3.3, restore MLO/u-boot.bin to NAND
  2. nand erase;mmcinit;fatload mmc 0 80000000 x-load.bin.ift_for_NAND;nand ecc hw;nand write.i 80000000 0 $(filesize);fatload mmc 0 80000000 flash-uboot.bin;nand ecc sw;nand write.i 80000000 80000 $(filesize);led flash all
  3.  
  4. ## U-Boot 1.3.3, flash new MLO/u-boot.img
  5. nand erase;mmcinit;fatload mmc 0 80000000 MLO;nand ecc hw;nand write.i 80000000 0 $(filesize);fatload mmc 0 80000000 u-boot.img;nand write.i 80000000 80000 $(filesize);led flash all
  6.  
  7. ## U-Boot Current, flash new MLO/u-boot.img
  8. nand erase 0 80000;mmc rescan 0;fatload mmc 0 81000000 MLO;nandecc hw;nand write.i 81000000 0 80000;fatload mmc 0 81000000 u-boot.img;nand erase 80000 170000;nand write.i 81000000 80000 110000
  9.  
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement