请检查boot.bin文件是否烧录正确。 boot.bin是绑定flash型号的, 打包或者烧录时请选择正确的flash型号。 详细信息可参考搭建Camera基础系统中
boot分区的章节。
如果boot不正确无法正常进入Normal u-boot, 需要重新烧录正确的boot或uImage, rootfs等文件。 一种方式是将Flash芯片拆下来, 但这种方式比较耗
时; 另一种方式是制作启动卡, 从TF卡启动, 进入TF卡的u-boot分区后可以通过u-boot的tftp或者fatload接口烧录正确的程序。
reset in 4ms
Ver:20210526-Turret
Invalid tag head
Invalid tag end
tag error:-1
boot error, goto normal boot
我这boot.bin也是官方发过来的,根据我们的flash绑定的,烧录就这样。我是T卡烧录的,命令如下
fatload mmc 0 0x80600000 u-boot-with-spl.bin;sf probe;sf erase 0x0 0x40000;sf write 0x80600000 0x0 0x40000
fatload mmc 0 0x80600000 tag.bin;sf probe;sf erase 0x40000 0x58000;sf write 0x80600000 0x40000 0x58000
fatload mmc 0 0x80600000 uimage.lzo;sf probe;sf erase 0x98000 0x300000;sf write 0x80600000 0x98000 0x300000
fatload mmc 0 0x80600000 rootfs_camera.cpio.lzo;sf probe;sf erase 0x398000 0x400000;sf write 0x80600000 0x398000 0x400000
fatload mmc 0 0x80600000 recovery.bin;sf probe;sf erase 0x798000 0x380000;sf write 0x80600000 0x798000 0x380000
fatload mmc 0 0x80600000 system.bin;sf probe;sf erase 0xb18000 0x468000;sf write 0x80600000 0xb18000 0x468000
这种问题一般是什么问题,uboot镜像有有问题?