RK356x U-Boot研究所(命令篇)3.8 test命令的用法
Posted Neutionwei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RK356x U-Boot研究所(命令篇)3.8 test命令的用法相关的知识,希望对你有一定的参考价值。
平台 | U-Boot 版本 | Linux SDK 版本 |
---|---|---|
RK356x | 2017.09 | v1.2.3 |
文章目录
一、test命令的介绍
test 命令定义在cmd/test.c
,需要使能以下配置:
obj-$(CONFIG_HUSH_PARSER) += test.o
以下介绍摘自cmd/Kconfig
:
config HUSH_PARSER
bool "Use hush shell"
depends on CMDLINE
help
This option enables the "hush" shell (from Busybox) as command line
interpreter, thus enabling powerful command line syntax like
if...then...else...fi conditionals or `&&\' and \'||\'
constructs ("shell scripts").
If disabled, you get the old, much simpler be
以上是关于RK356x U-Boot研究所(命令篇)3.8 test命令的用法的主要内容,如果未能解决你的问题,请参考以下文章
RK356x U-Boot研究所(命令篇)3.9 scsi命令的用法
RK356x U-Boot研究所(命令篇)3.3 env相关命令的用法
RK356x U-Boot研究所(命令篇)3.3 env相关命令的用法
RK356x U-Boot研究所(命令篇)3.6 fdt命令的用法