gpt4 book ai didi

u-boot - 如何在uboot中制作“if”和比较语句?

转载 作者:行者123 更新时间:2023-12-03 23:52:40 25 4
gpt4 key购买 nike

我是uboot和tftp编程的新手

基于this url,有一种方法可以使if这样的if imi $addr; then echo Image OK; else echo Image corrupted!!; fi语句

这是我的“如果”:

=> setenv a true
=> printenv a
a=true
=> setenv b true
=> printenv b
b=true
=> if a b; then echo 'same';fi
Unknown command 'a' - try 'help'
=> if $a $b; then echo 'same';fi
Unknown command 'true' - try 'help'
=> if ${a} ${b}; then echo 'same';fi
Unknown command 'true' - try 'help'
=>

最佳答案

我不确定它是否在所有u-boot版本中都可用,但是应该有一个test命令进行比较。你能试一下吗:

if test "${a}" = "${b}"; then echo "same"; fi


不幸的是,我没有访问u-boot的权限,所以这一切都来自内存。

关于u-boot - 如何在uboot中制作“if”和比较语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5646749/

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