i'm newbie in uboot and tftp programing
based on this url, there is how to make if
statement like this if imi $addr; then echo Image OK; else echo Image corrupted!!; fi
and this is my "if" :
=> 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'
=>