|
关于Sate210-F 开源uboot 自动进入fastboot 烧写状态的解决办法
[复制链接]
开源uboot 我们经过一些测试,当时没有外界的干扰,就没有出现自动进入fastboot 的现象。
后来一个Sate210-F 开发板使用者发现会自动进入fastboot 烧写模式,后来我想起来这是uboot 是默认某一个按键来触发这个模式的,并且我在一些产品上又改过。
于是马上定位到问题所在。
在Sate210-F main.c 文件有
#ifdef CONFIG_FASTBOOT
if (fastboot_preboot())
run_command("fastboot", 0);
#endif
只要屏蔽上述即可
#ifdef CONFIG_FASTBOOT
// if (fastboot_preboot())
// run_command("fastboot", 0);
#endif
不要去屏蔽掉 CONFIG_FASTBOOT,否则fastboot 功能也会被屏蔽掉。
好的,去更新一下uboot源码即可。
|
|