bootcmd=if test ${boot_fit} -eq 1; then run update_to_fit; fi; run findfdt; run init_console; run envboot; run distro_bootcmd
这是sdk标准的自动引导命令,其中if test ${boot_fit} -eq 1; then run update_to_fit;后面的fi是什么意思呢?
yongqing wang:
这个是和if命令配合的,为if的结束语句
Shine:
可以google/baidu一下。
blog.51cto.com/…/1173381