嵌入式系统在线升级流程

嵌入式系统在线升级流程:

1.U-boot判断Boot Flag Param 分区中的Boot Flag == 0
2.启动Normal App系统,进入系统应用
3.在Normal App系统中选择系统更新
4.通过网络下载压缩的新系统升级数据包,并将数据包写入升级数据包专用的分区
5.将Boot Flag Param分区中的Boot Flag设置为1,关机重启
6.U-boot判断Boot Flag Param分区中的Boot Flag == 1
7.启动Update系统
8.通过Update系统中的应用程序,解压升级数据包,并将解压的数据复制道Normal App系统所在分区
9.将Boot Flag Param分区中的Boot Flag设置为0,关机重启
10.U-boot判断Boot Flag Param分区中的Boot Flag == 0
11.启动更新后Normal App系统,进入系统应用
12.系统升级成功

你可能感兴趣的:(linux)