gpt4 book ai didi

embedded - u-boot - 选择正确的 linux 镜像

转载 作者:行者123 更新时间:2023-12-04 18:10:06 24 4
gpt4 key购买 nike

我想让 u-boot 根据标准在 2 个 linux 内核镜像之间进行选择。例如,我在 SPI 中有 uImage1 和 uImage2,u-boot 检查 uImage1 的 CRC,如果正常,则启动 uImage1,否则启动 uImage2。
我可以使用 u-boot 中的选项吗?

谢谢,
摩尼

最佳答案

您可以将 bootcmd 变量设置为 'bootm 80000000; bootm 820000000'。如果第一个 bootm 失败(如果 CRC 检查失败,它将失败)然后第二个将运行。如果第一个成功,那么第二个就永远没有机会跑了。

Uboot 确实支持一种具有诸如“for”和“if”结构的脚 native 制,例如:

for part in ${partition_list}
do
if nfs ${loadaddr} ${nfs_update_prefix}.${part}
echo Partition ${part} loaded at ${loadaddr}.
echo Do something with it here.
else
echo Partition ${part} not found.
fi
done

关于embedded - u-boot - 选择正确的 linux 镜像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16177319/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com