| 
 
贡献243 
飞刀84 FD
注册时间2019-7-23
在线时间8 小时积分38 
 
 
 | 
 
 发表于 2020-6-19 15:22:29
|
显示全部楼层 
| 1. 更新 MLO, u-boot.img 文件 tftp 0x82000000 MLO
 nand erase 0x0 0x200000
 nand write.e 0x82000000 0x0 ${filesize}
 
 tftp 0x82000000 u-boot.img
 nand erase 0x800000 0x200000
 nand write.e 0x82000000 0x800000 ${filesize}
 
 2. 更新内核文件
 tftp 0x82000000 uImage
 nand erase 0xc00000 0x500000
 nand write.e 0x82000000 0xc00000 ${filesize}
 
 3. 更新 uboot 的 logo
 tftp 0x82000000 logo.bmp
 nand erase 0x600000 0x200000
 nand write.e 0x82000000 0x600000 ${filesize}
 
 4. 更新文件系统
 tftp 0x82000000 ubi.img
 nand erase 0x1400000 0x3ec00000
 nand write.e 0x82000000 0x1400000 ${filesize}
 | 
 |