12345678910111213141516171819 |
- // By SD
- nand erase.chip;
- mw 0x80000000 0xffffffff 0x00080000;fatload mmc 0 0x80000000 MLO;nand erase 0x00000000 0x00080000;nand write 0x80000000 0x00000000 0x00080000;
- mw 0x80000000 0xffffffff 0x00100000;fatload mmc 0 0x80000000 u-boot.img;nand erase 0x00080000 0x00100000;nand write 0x80000000 0x00080000 0x00100000;
- mw 0x80000000 0xffffffff 0x00080000;fatload mmc 0 0x80000000 am335x-evm.dtb;nand erase 0x00300000 0x00080000;nand write 0x80000000 0x00300000 0x00080000;
- mw 0x80000000 0xffffffff 0x00A00000;fatload mmc 0 0x80000000 zimage;nand erase 0x00400000 0x00A00000;nand write 0x80000000 0x00400000 0x00A00000;
- mw 0x80000000 0xffffffff 0x03000000;fatload mmc 0 0x80000000 ramdisk.gz;nand erase 0x03000000 0x03000000;nand write 0x80000000 0x03000000 0x03000000;
- mw 0x80000000 0xffffffff 0x00600000;fatload mmc 0 0x80000000 FactoryDefaultConfig.bin;nand erase 0x09000000 0x00600000;nand write 0x80000000 0x09000000 0x00600000;nand erase 0x09600000 0x00600000;nand write 0x80000000 0x09600000 0x00600000;nand erase 0x09c00000 0x00600000;nand write 0x80000000 0x09c00000 0x00600000;boot;
- // By TFTP
- nand erase.chip;
- mw 0x80000000 0xffffffff 0x00080000;tftp 0x80000000 MLO;nand erase 0x00000000 0x00080000;nand write 0x80000000 0x00000000 0x00080000;
- mw 0x80000000 0xffffffff 0x00100000;tftp 0x80000000 u-boot.img;nand erase 0x00080000 0x00100000;nand write 0x80000000 0x00080000 0x00100000;
- mw 0x80000000 0xffffffff 0x00080000;tftp 0x80000000 am335x-evm.dtb;nand erase 0x00300000 0x00080000;nand write 0x80000000 0x00300000 0x00080000;
- mw 0x80000000 0xffffffff 0x00A00000;tftp 0x80000000 zimage;nand erase 0x00400000 0x00A00000;nand write 0x80000000 0x00400000 0x00A00000;
- mw 0x80000000 0xffffffff 0x03000000;tftp 0x80000000 ramdisk.gz;nand erase 0x03000000 0x03000000;nand write 0x80000000 0x03000000 0x03000000;
- mw 0x80000000 0xffffffff 0x00600000;tftp 0x80000000 FactoryDefaultConfig.bin;nand erase 0x09000000 0x00600000;nand write 0x80000000 0x09000000 0x00600000;nand erase 0x09600000 0x00600000;nand write 0x80000000 0x09600000 0x00600000;nand erase 0x09c00000 0x00600000;nand write 0x80000000 0x09c00000 0x00600000;
|