diff options
Diffstat (limited to 'test/cmd_ut.c')
| -rw-r--r-- | test/cmd_ut.c | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/test/cmd_ut.c b/test/cmd_ut.c index 90b260f72d6..67a13ee32b8 100644 --- a/test/cmd_ut.c +++ b/test/cmd_ut.c @@ -28,6 +28,10 @@ int cmd_ut_category(const char *name, const char *prefix,  static struct cmd_tbl cmd_ut_sub[] = {  	U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""), +#ifdef CONFIG_BOOTSTD +	U_BOOT_CMD_MKENT(bootstd, CONFIG_SYS_MAXARGS, 1, do_ut_bootstd, +			 "", ""), +#endif  	U_BOOT_CMD_MKENT(common, CONFIG_SYS_MAXARGS, 1, do_ut_common, "", ""),  #if defined(CONFIG_UT_DM)  	U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""), @@ -115,6 +119,9 @@ static char ut_help_text[] =  	"ut bloblist - Test bloblist implementation\n"  	"ut compression - Test compressors and bootm decompression\n"  #endif +#ifdef CONFIG_BOOTSTD +	"ut bootstd - Test standard boot implementation\n" +#endif  #ifdef CONFIG_UT_DM  	"ut dm [test-name]\n"  #endif | 
